We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb02ebb commit 6d8ff93Copy full SHA for 6d8ff93
.github/workflows/checks.yml
@@ -30,6 +30,7 @@ jobs:
30
31
build-storybook:
32
runs-on: ubuntu-latest
33
+ environment: CI
34
35
strategy:
36
matrix:
@@ -45,9 +46,13 @@ jobs:
45
46
cache: "npm"
47
- run: npm ci
48
- run: npm run build-storybook
- - name: Save storybook static
49
- uses: actions/upload-artifact@v4
+ - name: Upload storybook static
50
+ uses: jakejarvis/[email protected]
51
with:
- name: storybook static
52
- path: |
53
- storybook-static
+ args: --acl public-read --follow-symlinks
+ env:
54
+ AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
55
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
56
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
57
+ SOURCE_DIR: 'storybook-static'
58
+ DEST_DIR: '/storybook-static/${{ github.ref_name }}-${{ github.run_number }}-${{ github.run_attempt }}/'
0 commit comments