diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e55af6523..d0b5a7082 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -2,7 +2,7 @@ on: pull_request jobs: - build: + build-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -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