From f695d7e79bd8ae93522e5221ae7b1e91d5fb0f26 Mon Sep 17 00:00:00 2001 From: Grant Forrest Date: Wed, 18 Sep 2024 14:27:13 -0400 Subject: [PATCH] deploy storybook to ghp --- .github/workflows/website.yaml | 36 ++++++++++++++++++++++++++++++++++ .gitignore | 3 ++- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/website.yaml diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml new file mode 100644 index 0000000..88b7fbf --- /dev/null +++ b/.github/workflows/website.yaml @@ -0,0 +1,36 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '18' + + - name: Install PNPM + run: npm install -g pnpm + - name: Setup PNPM + run: pnpm config set store-dir $PNPM_CACHE_FOLDER + + - name: Install dependencies + run: pnpm i + + - name: Build Storybook + run: pnpm build-storybook + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./storybook-static diff --git a/.gitignore b/.gitignore index 4ab2cc8..06f3db8 100644 --- a/.gitignore +++ b/.gitignore @@ -129,4 +129,5 @@ dist .yarn/install-state.gz .pnp.* -*storybook.log \ No newline at end of file +*storybook.log +/storybook-static/