From 6d4da78613590f220053fd948c76ed8f6719fd40 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Sat, 1 Jan 2022 06:20:43 +0000 Subject: [PATCH] Copy build artifact correctly to s3 --- .github/workflows/cloud-runner-aws-pipeline.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index fd83645d..340a250c 100644 --- a/.github/workflows/cloud-runner-aws-pipeline.yml +++ b/.github/workflows/cloud-runner-aws-pipeline.yml @@ -88,7 +88,9 @@ jobs: aws configure set region $AWS_DEFAULT_REGION --profile default aws s3 ls aws s3 ls game-ci-test-storage - aws s3 cp $BUILD_PATH/$BUILD_FILE s3://game-ci-test-storage/$BUILD_PATH/$BUILD_FILE + ls $PROJECT_PATH/$BUILD_PATH + echo "$PROJECT_PATH/$BUILD_PATH/$BUILD_FILE s3://game-ci-test-storage/$BUILD_PATH/$BUILD_FILE" + aws s3 cp $PROJECT_PATH/$BUILD_PATH/$BUILD_FILE s3://game-ci-test-storage/$BUILD_PATH/$BUILD_FILE secrets: - name: awsAccessKeyId value: ${{ secrets.AWS_ACCESS_KEY_ID }}