|
@ -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 |
|
|