Skip to content

Commit

Permalink
something is goofy with capturing the exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-dull committed Nov 21, 2024
1 parent 65ec02c commit ec04388
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
curl -X LOCK -sS http://localhost:2442/lock?env=InT
cd .github/build_tests
terraform apply --auto-approve
echo "exit_code=$?" >> $GITHUB_OUTPUT
e=$?
echo ${e}
echo "exit_code=${e}" >> $GITHUB_OUTPUT
- name: Verify Command Failed Successfully
run: |
if [ "${{ steps.prelock_InT.outcome }}" != "success" ]; then
Expand Down

0 comments on commit ec04388

Please sign in to comment.