Skip to content

Commit

Permalink
do not launch new deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
xavfernandez committed Sep 18, 2024
1 parent b29ed68 commit fad7b80
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/review-app-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ jobs:
esac
'
git push review_app $BRANCH:master
$CLEVER_CLI deploy --branch $BRANCH --force --same-commit-policy rebuild
OUTPUT="IN PROGRESS";
while [[ $OUTPUT == *"IN PROGRESS"* ]]; do
sleep 5;
OUTPUT=`$CLEVER_CLI activity`;
echo $OUTPUT
done
- name: 🍻 Add link to pull request
uses: thollander/actions-comment-pull-request@v2.5.0
Expand Down

0 comments on commit fad7b80

Please sign in to comment.