diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e5cbde61..f184051d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,15 +97,15 @@ jobs: - name: Build x64 with Node.js ${{ matrix.node-version}} if: contains(matrix.runtime, 'x64') - run: yarn run build --if-present + run: yarn run build - name: Build ARMv7l with Node.js ${{ matrix.node-version}} if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l') - run: yarn run build:arm32 --if-present + run: yarn run build:arm32 - name: Build ARM64 with Node.js ${{ matrix.node-version}} if: contains(matrix.runtime, 'arm64') - run: yarn run build:arm64 --if-present + run: yarn run build:arm64 - name: Upload Linux .zip x64 Artifact uses: actions/upload-artifact@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c483058b..7cc9d89ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,15 +65,15 @@ jobs: - name: Build x64 with Node.js ${{ matrix.node-version}} if: contains(matrix.runtime, 'x64') - run: yarn run build --if-present + run: yarn run build - name: Build ARMv7l with Node.js ${{ matrix.node-version}} if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l') - run: yarn run build:arm32 --if-present + run: yarn run build:arm32 - name: Build ARM64 with Node.js ${{ matrix.node-version}} if: contains(matrix.runtime, 'arm64') - run: yarn run build:arm64 --if-present + run: yarn run build:arm64 - name: Upload AppImage x64 Release uses: actions/upload-release-asset@v1