Skip to content

Commit

Permalink
chore: improve debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
UlisesGascon committed Apr 18, 2024
1 parent 4712293 commit d957daa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
# Get the conclusion of the workflow run
conclusion=$(echo "$response" | jq -r .conclusion)
# Get the URL of the workflow run
html_url=$(echo "$response" | jq -r .html_url)
echo "Check the workflow run for details: $html_url"
if [[ "$status" == "completed" && "$conclusion" != "success" ]]; then
echo "Workflow completed but failed. Conclusion: $conclusion"
exit 1
Expand Down

0 comments on commit d957daa

Please sign in to comment.