Skip to content

Commit ca6d965

Browse files
authored
Set secrets as environment variables in CI (#155)
1 parent dfc67f6 commit ca6d965

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
jobs:
88
test:
99
runs-on: ubuntu-latest
10+
env:
11+
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
12+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
13+
AWS_BUCKET: ${{ secrets.AWS_BUCKET }}
14+
AWS_REGION: ${{ secrets.AWS_REGION }}
1015
strategy:
1116
matrix:
1217
node-version:

0 commit comments

Comments
 (0)