From 3de962edc9fe1169ff6032bef94b934be53211d1 Mon Sep 17 00:00:00 2001 From: Clare Liguori Date: Fri, 31 Jan 2020 16:50:57 -0500 Subject: [PATCH] fix: create workflows dir in integ-tests --- run_integ_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run_integ_test.sh b/run_integ_test.sh index 37bdaa7d1..176aa59bf 100755 --- a/run_integ_test.sh +++ b/run_integ_test.sh @@ -8,6 +8,7 @@ ACTION_GIT_COMMIT_ID=`git rev-parse HEAD` # Update the integ test action workflow file with the latest action commit ID git checkout integ-tests sed -i 's|aws-actions/configure-aws-credentials@v1|aws-actions/configure-aws-credentials@$ACTION_GIT_COMMIT_ID|g' test-workflow.yml +mkdir -p .github/workflows cp test-workflow.yml .github/workflows git add .github/workflows git commit -m "Test commit $ACTION_GIT_COMMIT_ID"