Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Dec 12, 2024
1 parent 8c2a02d commit 5a4e050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Upload artifact if exit code 53
if: failure()
run: |
if [ "{{ env.last_exit_code }}" == "53" ]; then
if [ "${{ env.last_exit_code }}" == "53" ]; then
echo "Uploading marker for test ${{ matrix.tests.name }}"
mkdir -p artifacts/${{ matrix.tests.name }}
echo "failure-marker" > artifacts/${{ matrix.tests.name }}/failure-marker
Expand Down

0 comments on commit 5a4e050

Please sign in to comment.