fix: short chain name for governance url (#2753) #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy storybook to bucket | |
on: | |
push: | |
branches: | |
- dev | |
env: | |
S3_BUCKET: s3://spektr-storybook | |
jobs: | |
deploy-to-bucket: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: ⚙️ Install dependencies | |
uses: ./.github/workflows/install-pnpm | |
- name: Build app | |
run: | | |
pnpm storybook:build | |
- name: 🤌 Upload to s3 | |
uses: ./.github/workflows/upload-to-s3 | |
with: | |
s3_region: nl-ams | |
s3_access_key: ${{ secrets.S3_ACCESS_KEY }} | |
s3_secret_key: ${{ secrets.S3_SECRET_KEY }} | |
s3_bucket: ${{ env.S3_BUCKET }} | |
source: "release/storybook" |