From 195ca36456fb958cb1a41877d124f54caea78096 Mon Sep 17 00:00:00 2001 From: ryanformio Date: Thu, 14 Mar 2024 13:21:50 -0500 Subject: [PATCH] configure creds --- .github/workflows/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 185acf4ce1..73924b9331 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -174,6 +174,12 @@ jobs: sudo apt-get update sudo apt install -y awscli + - name: Set AWS Credentials + run: | + aws configure set aws_access_key_id ${{ env.AWS_ACCESS_KEY_ID }} + aws configure set aws_secret_access_key ${{ env.AWS_SECRET_ACCESS_KEY }} + aws configure set default.region ${{ env.AWS_DEFAULT_REGION }} + - name: Release uses: borales/actions-yarn@v4 with: