Skip to content

Commit

Permalink
Split build and
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Dec 25, 2023
1 parent efa0823 commit dbaa058
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,25 @@ jobs:
timeout_minutes: 10
- name: Create apps folder
run: mkdir -p apps
- name: build linux64 release
- name: build linux64
id: build1
uses: nick-fields/retry@v2
with:
max_attempts: 3
retry_on: error
timeout_minutes: 20
command: sync && node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js release --platform=linux64 --installer
command: node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js clean && node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js build
#continue-on-error: true
- name: linux64 release
id: release1
uses: nick-fields/retry@v2
with:
max_attempts: 3
retry_on: error
timeout_minutes: 20
command: node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js release --platform=linux64 --installer
#continue-on-error: true

- name: Upload deb
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit dbaa058

Please sign in to comment.