Skip to content

⬆️ Bump the npm_and_yarn group with 4 updates (#116) #107

⬆️ Bump the npm_and_yarn group with 4 updates (#116)

⬆️ Bump the npm_and_yarn group with 4 updates (#116) #107

Workflow file for this run

name: GitHub Pages
on:
push:
branches: main
jobs:
build_pages:
runs-on: ubuntu-latest
if: github.actor != 'nektos/act'
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install
- run: pnpm run build-storybook
- uses: actions/upload-pages-artifact@v3
with:
path: storybook-static
deploy_pages:
needs: build_pages
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
id: deployment