Skip to content

Commit

Permalink
feat(gradle-library): attempt artifact upload also on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Aug 21, 2024
1 parent 7256ee1 commit 52e8930
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/gradle-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ jobs:
# Upload artifact
#
- name: Upload artifact
if: ${{ inputs.upload-artifact-path != '' }}
if: always() && ${{ inputs.upload-artifact-path != '' }}
continue-on-error: true
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: ${{ inputs.upload-artifact-name }}
Expand Down

0 comments on commit 52e8930

Please sign in to comment.