Skip to content

Commit

Permalink
fix condition to upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Feb 26, 2024
1 parent c5d218f commit eab39ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
clean test | xcpretty
- name: Upload test result
uses: actions/upload-artifact@v4
if: ${{ matrix.xcode }} == ${{ needs.extract-matrix.outputs.latest }} && (success() || failure())
if: ${{ matrix.xcode == needs.extract-matrix.outputs.latest && (success() || failure()) }}
with:
name: ${{ steps.create-destination-key.outputs.destination-key }}
path: test_output
Expand Down

0 comments on commit eab39ed

Please sign in to comment.