Skip to content

Commit

Permalink
Attempt #11 cleanup wait for codepipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DomWestAnd committed May 31, 2023
1 parent 576d80b commit 1ce8f67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pushImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ jobs:
- name: Wait for CodePipeline
run: |
PIPELINE_STATE=$(aws codepipeline get-pipeline-state --name Build-Find-Frontend --query "join('', stageStates[?stageName].latestExecution.status)")
while [[ ${ PIPELINE_STATE } != "\"SucceededSucceededSucceeded\"" ]]; do
echo ${ PIPELINE_STATE }
while [[ $PIPELINE_STATE != "\"SucceededSucceededSucceeded\"" ]]; do
echo $PIPELINE_STATE
sleep 10
done
Expand Down

0 comments on commit 1ce8f67

Please sign in to comment.