Skip to content
Merged

2.0.3 #177

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 0 additions & 70 deletions .github/workflows/checks.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/publish-demo-site.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish Storybook

on:
push:
branches:
- 2.x

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install npm packages
run: npm ci
- name: Build Storybook artifact
run: npm run build-storybook
- uses: actions/upload-pages-artifact@v3
with:
name: 'github-pages'
path: './storybook'
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Loading