diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml index 88c926a..4be4d35 100644 --- a/.github/workflows/storybook.yml +++ b/.github/workflows/storybook.yml @@ -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 @@ -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 }}