Browse Source

Add arm64 build (#238)

master
jeffvli 3 years ago
parent
commit
f20a03052b
  1. 9
      .github/workflows/publish-linux.yml

9
.github/workflows/publish-linux.yml

@ -40,9 +40,16 @@ jobs:
run: | run: |
yarn install yarn install
- name: Publish releases - name: Publish Linux
env: env:
# This is used for uploading release assets to github # This is used for uploading release assets to github
GITHUB_TOKEN: ${{ secrets.PAT }} GITHUB_TOKEN: ${{ secrets.PAT }}
run: | run: |
yarn postinstall && yarn build && yarn electron-builder --publish always --linux yarn postinstall && yarn build && yarn electron-builder --publish always --linux
- name: Publish ARM64
env:
# This is used for uploading release assets to github
GITHUB_TOKEN: ${{ secrets.PAT }}
run: |
yarn postinstall && yarn build && yarn electron-builder --publish always --arm64

Loading…
Cancel
Save