diff --git a/.github/workflows/deploy-storybook-to-github-pages.yml b/.github/workflows/deploy-storybook-to-github-pages.yml index 120cdd6..5f4f642 100644 --- a/.github/workflows/deploy-storybook-to-github-pages.yml +++ b/.github/workflows/deploy-storybook-to-github-pages.yml @@ -18,6 +18,8 @@ jobs: name: github-pages url: ${{ steps.build-publish.outputs.page_url }} steps: + - name: checkout + uses: actions/checkout@v4 - id: filter uses: dorny/paths-filter@v3 with: @@ -33,4 +35,5 @@ jobs: with: install_command: yarn install # default: npm ci build_command: yarn build-storybook # default: npm run build-storybook - path: storybook-static # default: dist/storybook \ No newline at end of file + path: storybook-static # default: dist/storybook + checkout: false \ No newline at end of file