File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ACTION_GIT_COMMIT_ID=`git rev-parse HEAD`
7
7
8
8
# Update the integ test action workflow file with the latest action commit ID
9
9
git checkout integ-tests
10
- sed -i ' s|aws-actions/configure-aws-credentials@v1|aws-actions/configure-aws-credentials@$ACTION_GIT_COMMIT_ID|g' test-workflow.yml
10
+ sed -i " s|aws-actions/configure-aws-credentials@v1|aws-actions/configure-aws-credentials@$ACTION_GIT_COMMIT_ID |g" test-workflow.yml
11
11
mkdir -p .github/workflows
12
12
cp test-workflow.yml .github/workflows
13
13
git add .github/workflows
@@ -18,7 +18,7 @@ git push origin integ-tests
18
18
19
19
# Validate that the action workflow succeeds
20
20
# Exit codes: success = 0; failure = 1; pending = 2; no status = 3
21
- while hub ci-status; [ $? -ge 2 ] do
21
+ while hub ci-status; [ $? -ge 2 ]; do
22
22
echo " waiting for test workflow to complete..."
23
23
sleep 5
24
24
done
You can’t perform that action at this time.
0 commit comments