From e78ae6e9848b4b5a98f695ad701e6e740bc03916 Mon Sep 17 00:00:00 2001 From: Gabriel Pizarro Date: Sat, 18 May 2024 17:32:12 -0700 Subject: [PATCH] so i kinda forgot about the workflows again --- .github/workflows/02-gh-pages-rebuild-part-1.yml | 4 ++-- .github/workflows/52-storybook-main-branch.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/02-gh-pages-rebuild-part-1.yml b/.github/workflows/02-gh-pages-rebuild-part-1.yml index 9f480584..5c4ffb54 100644 --- a/.github/workflows/02-gh-pages-rebuild-part-1.yml +++ b/.github/workflows/02-gh-pages-rebuild-part-1.yml @@ -84,7 +84,7 @@ jobs: continue-on-error: true run: | # Install npm packages and build the Storybook files npm install - npx build-storybook --docs -o storybook_static -s public + npm run build-storybook -- --docs -o storybook_static - name: Upload to artifacts uses: actions/upload-artifact@v3.1.2 @@ -345,7 +345,7 @@ jobs: continue-on-error: true run: | # Install npm packages and build the Storybook files npm install - npx build-storybook --docs -o storybook_static_${{ matrix.value.number }} -s public + npm run build-storybook -- --docs -o storybook_static_${{ matrix.value.number }} - name: Upload Storybook to Artifacts if: always() # always upload artifacts, even if tests fail diff --git a/.github/workflows/52-storybook-main-branch.yml b/.github/workflows/52-storybook-main-branch.yml index e29a80fe..7bbcd00f 100644 --- a/.github/workflows/52-storybook-main-branch.yml +++ b/.github/workflows/52-storybook-main-branch.yml @@ -37,7 +37,7 @@ jobs: working-directory: frontend run: | # Install npm packages and build the Storybook files npm install - npx build-storybook --docs -o storybook_static -s public + npm run build-storybook -- --docs -o storybook_static - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4