Skip to content

Commit

Permalink
docs: storybook action update
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavPetrik committed Nov 29, 2023
1 parent 9027cd1 commit 12f3184
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ name: storybook

on:
push:
branches: [ "main" ]
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20.10

- name: Cache node_modules
id: cache-node-modules
Expand All @@ -38,18 +38,18 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: build

- name: Build storybook
uses: borales/actions-yarn@v4
with:
cmd: build:storybook

- name: Upload storybook
uses: actions/upload-pages-artifact@v1.0.4
with:
uses: actions/upload-pages-artifact@v2
with:
path: storybook-static

- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2
with:
token: ${{ github.token }}

0 comments on commit 12f3184

Please sign in to comment.