From 941e64a93794b5a63430044a036f9af5e94b15c0 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 26 Aug 2021 00:50:37 -0700 Subject: [PATCH] ci: allow failures of upload steps While upload failures aren't ideal, they aren't technically relevant to the commit or PR itself --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6164c80c1..a34f285e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,12 +127,14 @@ jobs: - name: Upload Artifact to GitHub uses: actions/upload-artifact@v2 + continue-on-error: true with: name: ${{ steps.package.outputs.artifact }} path: build/Olive*.AppImage - name: Upload Packages to Nightly Page working-directory: build + continue-on-error: true env: GH_AUTH_KEY: ${{ secrets.GH_AUTH_KEY }} PKGNAME: ${{ steps.package.outputs.pkgname }} @@ -273,6 +275,7 @@ jobs: - name: Upload Portable Artifact to GitHub uses: actions/upload-artifact@v2 + continue-on-error: true with: name: ${{ env.PKGNAME }}.zip path: ${{ runner.workspace }}/build/${{ env.PKGNAME }}.zip @@ -280,6 +283,7 @@ jobs: - name: Upload Packages to Nightly Page shell: bash working-directory: ${{ runner.workspace }}/build + continue-on-error: true env: GH_AUTH_KEY: ${{ secrets.GH_AUTH_KEY }} if: github.event_name == 'push' @@ -398,6 +402,7 @@ jobs: - name: Upload Artifact to GitHub uses: actions/upload-artifact@v2 + continue-on-error: true with: name: ${{ env.PKGNAME }}.zip path: ${{ runner.workspace }}/build/${{ env.PKGNAME }}.zip @@ -405,6 +410,7 @@ jobs: - name: Upload Packages to Nightly Page shell: bash working-directory: ${{ runner.workspace }}/build + continue-on-error: true env: GH_AUTH_KEY: ${{ secrets.GH_AUTH_KEY }} if: github.event_name == 'push'