Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Dec 10, 2024
1 parent 7f7711e commit fc54c2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
needs: cypress-tests
environment: ${{ inputs.environment }}
if: ${{ failure() }} && github.ref == 'refs/heads/main'
if: ${{ failure() }} && github.ref == 'refs/heads/main' }}
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
IFS=',' read -r -a workspace_array <<< "$workspace_ids"
# Pick the correct workspace ID based on the index
workspace_id=${workspace_array[${{ matrix.tests.index }}]}
workspace_id="${workspace_array[${{ matrix.tests.index }}]}"
echo "Using workspace ID: $workspace_id"
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
fi
echo "last_exit_code=$exit_code" >> "$GITHUB_ENV"
exit $last_exit_code
exit "$last_exit_code"
- name: Upload artifact if exit code 53
if: ${{ failure() && env.last_exit_code == '53' }}
Expand All @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-latest
needs: api-test
environment: ${{ inputs.environment }}
if: ${{ failure() }} && github.ref == 'refs/heads/main'
if: ${{ failure() }} && github.ref == 'refs/heads/main' }}
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit fc54c2a

Please sign in to comment.