Skip to content

chore(release): 1.266.4 #109

chore(release): 1.266.4

chore(release): 1.266.4 #109

---
name: Deploy storybook
on:
push:
tags:
- v*
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
env:
ENABLE_STORYBOOK: true
jobs:
deploy-storybook:
name: Deploy storybook
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- uses: actions/setup-node@v3
with:
node-version-file: "./app/package.json"
cache: npm
cache-dependency-path: "**/package-lock.json"
- run: npm ci
- name: Build storybook
run: npm run build:storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: app/static/_storybook
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2