Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
mmosca committed Dec 25, 2023
1 parent e1e8ec8 commit 53ffb29
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: pull_request


jobs:
build:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -25,6 +25,12 @@ jobs:
- name: Create apps folder
run: mkdir -p apps
- name: build linux64 release
id: build1
run: node ./node_modules/gulp/bin/gulp.js release --platform=linux64 -LLLL --installer
continue-on-error: true
- name: build linux64 release 2
id: build2
if: steps.build1.outcome == 'failure'
run: node ./node_modules/gulp/bin/gulp.js release --platform=linux64 -LLLL --installer
- name: Upload deb
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 53ffb29

Please sign in to comment.