Skip to content

Commit

Permalink
fixup! feat(action): implement rollback mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
IamAbbey committed Feb 22, 2024
1 parent a7b6ee0 commit c6dd3f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ runs:
if [[ "$PRIMARY_DEPLOYMENT_DEFINITION_ARN" == "$LATEST_TASK_DEFINITION" ]]; then
if [ ! -z "$PREVIOUS_TASK_DEFINITION" ]; then
echo "arn-to-register='previous'" >> $GITHUB_OUTPUT
echo "arn-to-register=previous" >> $GITHUB_OUTPUT
fi
else
echo "arn-to-register='latest'" >> $GITHUB_OUTPUT
echo "arn-to-register=latest" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit c6dd3f7

Please sign in to comment.