From f407d148c4b791c76f644f51fba17e5a2ce10c3c Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Fri, 21 Oct 2022 03:22:51 +0200 Subject: [PATCH] Remove the npm only --if-present arg from the workflows (#2753) --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e5cbde6..f184051d 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 8c483058..7cc9d89e 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