Skip to content

Commit

Permalink
Add !cancelled() condition to all artifact uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
hallipr committed Jul 23, 2024
1 parent ff54131 commit 0f3c24f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:

- name: Upload artifact
uses: actions/upload-artifact@v2
if: ${{ !cancelled() }}
with:
name: test-artifacts
path: ${{github.workspace}}/artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:

- name: Upload artifact
uses: actions/upload-artifact@v2
if: ${{ !cancelled() }}
with:
name: build-artifacts
path: ${{github.workspace}}/artifacts
Expand Down

0 comments on commit 0f3c24f

Please sign in to comment.