Separate regular and arm64 build
This commit is contained in:
parent
971bfe3823
commit
118a9f3257
1 changed files with 15 additions and 1 deletions
16
.github/workflows/publish-linux.yml
vendored
16
.github/workflows/publish-linux.yml
vendored
|
@ -35,5 +35,19 @@ jobs:
|
||||||
command: |
|
command: |
|
||||||
npm run postinstall
|
npm run postinstall
|
||||||
npm run build
|
npm run build
|
||||||
npm exec electron-builder -- --publish always --linux --arm64
|
npm exec electron-builder -- --publish always --linux
|
||||||
|
on_retry_command: npm cache clean --force
|
||||||
|
|
||||||
|
- name: Publish releases (arm64)
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
uses: nick-invision/retry@v2.8.2
|
||||||
|
with:
|
||||||
|
timeout_minutes: 30
|
||||||
|
max_attempts: 3
|
||||||
|
retry_on: error
|
||||||
|
command: |
|
||||||
|
npm run postinstall
|
||||||
|
npm run build
|
||||||
|
npm exec electron-builder -- --publish always --linux
|
||||||
on_retry_command: npm cache clean --force
|
on_retry_command: npm cache clean --force
|
||||||
|
|
Reference in a new issue