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/