Skip to content

Commit 8e91942

Browse files
committed
test many ways
1 parent b0d05d2 commit 8e91942

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,18 @@ jobs:
3131
node-version: 18
3232

3333
- name: Debug env vars
34+
env:
35+
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
36+
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
37+
S3_BUCKET: ${{ vars.S3_BUCKET }}
38+
S3_PATH: ${{ vars.S3_PATH }}
39+
S3_ENDPOINT: ${{ vars.S3_ENDPOINT }}
3440
run: |
41+
echo "S3_BUCKET is $S3_BUCKET"
42+
echo "S3_BUCKET is '${{ env.S3_BUCKET }}'"
43+
echo "S3_BUCKET is '${{ secrets.S3_BUCKET }}'"
3544
echo "S3_BUCKET is '${{ vars.S3_BUCKET }}'"
36-
echo "S3_ENDPOINT is '${{ vars.S3_ENDPOINT }}'"
45+
3746
3847
3948
- name: Pin react-docgen version

0 commit comments

Comments
 (0)