Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
JDeepD committed Oct 13, 2024
1 parent cbeb260 commit b8727d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ runs:
DEPLOYMENT=$(fetch_latest_deployment)
STATUS=$(echo "$DEPLOYMENT" | jq -r '.latest_stage.status')
if [ "$STATUS" = "success" ] || [ "$STATUS" = "failed" ]; then
if [ "$STATUS" = "success" ] || [ "$STATUS" = "failure" ]; then
echo "Build completed with status: $STATUS"
echo "BUILD_STATUS=$STATUS" >> $GITHUB_ENV
return 0
Expand Down

0 comments on commit b8727d1

Please sign in to comment.