Skip to content

Commit

Permalink
Adding aws creds to step
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanformio committed Mar 14, 2024
1 parent 12fc1b3 commit 884421b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
needs: [build, test]
runs-on: ubuntu-latest
env:
AWS_DEFAULT_REGION: us-west-2
AWS_ACCESS_KEY_ID: ${{ vars.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

steps:
- run: echo "Triggered by ${{ github.event_name }} event."
Expand All @@ -165,7 +169,12 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: Test
- name: Install awscli
run: |
sudo apt-get update
sudo apt install -y awscli
- name: Release
uses: borales/actions-yarn@v4
with:
cmd: release

0 comments on commit 884421b

Please sign in to comment.