From 3b2b54d19af717b3397e0310fb66424411a6e329 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Sat, 1 Jan 2022 01:10:17 +0000 Subject: [PATCH] fix --- .github/workflows/cloud-runner-aws-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cloud-runner-aws-pipeline.yml b/.github/workflows/cloud-runner-aws-pipeline.yml index 3e5836d7..6b9422d3 100644 --- a/.github/workflows/cloud-runner-aws-pipeline.yml +++ b/.github/workflows/cloud-runner-aws-pipeline.yml @@ -82,7 +82,7 @@ jobs: postBuildSteps: | - name: upload image: amazon/aws-cli - commands: 'aws configure && aws s3 ls && aws s3 ls game-ci-test-storage && aws s3 copy $BUILD_PATH/$BUILD_FILE game-ci-test-storage' + commands: 'aws configure && aws configure set aws_access_key_id $AWS_ACCESS_KEY_ID && aws configure set aws_secret_access_key $AWS_SECRET_ACCESS_KEY && aws configure set region $AWS_DEFAULT_REGION && aws s3 ls && aws s3 ls game-ci-test-storage && aws s3 copy $BUILD_PATH/$BUILD_FILE game-ci-test-storage' secrets: - name: awsAccesKeyId value: ${{ secrets.AWS_ACCESS_KEY_ID }}