Skip to content

New: Point animation for 1-Device #59

New: Point animation for 1-Device

New: Point animation for 1-Device #59

# .github/workflows/deploy-storybook-pages.yml
name: Build and Publish Storybook to GitHub Pages
on:
push:
branches:
- develop
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Build
run: |
npm ci
npm run build
npm run build-storybook
mv www storybook-static/prototypes
- name: Upload storybook artifact
uses: actions/[email protected]
with:
path: storybook-static
deploy:
environment:
name: github-pages
url: ${{ steps.build-publish.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GH Pages
id: deployment
uses: actions/deploy-pages@v3
with:
token: ${{ github.token }}