Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Dec 9, 2024
1 parent ba5f36e commit 1d839d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ jobs:
- run: |
VALID_FAILURE_EXIT_CODES="53"
echo "consolidated:"
echo "${{ needs.api-test.outputs.exit_code | join(",") }}"
echo "alt:"
echo "${{ needs.api-test.outputs.exit_code }}"
exit_codes='[${{ needs.api-test.outputs.exit_code | join(",") }}] | jq -r '.[]''
echo "alt:"
echo "${{ needs.api-test.outputs.exit_code }} | jq"
exit_codes='[${{ needs.api-test.outputs.exit_code}}] -r '.[]''
# Check if any exit code is "bad"
for code in $exit_codes; do
if echo "$VALID_FAILURE_EXIT_CODES" | grep -qw "$code"; then
Expand Down

0 comments on commit 1d839d2

Please sign in to comment.