chore(deps): bump tar from 6.1.13 to 6.2.1 #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Release | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
test: | |
name: Test (${{ matrix.os }} - ${{ matrix.arch }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
arch: [x64] | |
include: | |
- os: macOS-latest | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
cache: yarn | |
- name: Install | |
run: yarn --frozen-lockfile --network-timeout 100000 || yarn --frozen-lockfile --network-timeout 100000 || yarn --frozen-lockfile --network-timeout 100000 | |
build: | |
needs: test | |
name: Build (${{ matrix.os }} - ${{ matrix.arch }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Build for supported platforms | |
# https://github.com/electron/electron-packager/blob/ebcbd439ff3e0f6f92fa880ff28a8670a9bcf2ab/src/targets.js#L9 | |
# 32-bit Linux unsupported as of 2019: https://www.electronjs.org/blog/linux-32bit-support | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
arch: [x64, arm64] | |
include: | |
- os: windows-latest | |
arch: ia32 | |
- os: ubuntu-latest | |
arch: armv7l | |
# Publishing artifacts for multiple Windows architectures has | |
# a bug which can cause the wrong architecture to be downloaded | |
# for an update, so until that is fixed, only build Windows x64 | |
exclude: | |
- os: windows-latest | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
cache: yarn | |
- name: Install | |
run: yarn --network-timeout 100000 || yarn --network-timeout 100000 || yarn --network-timeout 100000 | |
- name: Build | |
if: startsWith(github.ref, 'refs/tags/') | |
run: yarn build:current | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
draft: true | |
files: | | |
dist/**/*.deb | |
dist/**/*.dmg | |
dist/**/*setup*.exe | |
dist/**/*.nupkg | |
dist/**/*.rpm | |
dist/**/*.zip | |
dist/**/RELEASES |