ci: allow failures of upload steps

While upload failures aren't ideal, they aren't technically relevant to the commit or PR itself
This commit is contained in:
itsmattkc
2021-08-26 00:50:37 -07:00
parent 878d09f6e6
commit 941e64a937
+6
View File
@@ -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'