From 141c322e433e4473ad7fa4512d7666bac7105615 Mon Sep 17 00:00:00 2001 From: Ronny Roeller Date: Tue, 20 Aug 2024 17:28:58 +0200 Subject: [PATCH] Add workflow to publish storybook --- .github/workflows/deploy-storybook.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/deploy-storybook.yml diff --git a/.github/workflows/deploy-storybook.yml b/.github/workflows/deploy-storybook.yml new file mode 100644 index 0000000..2a84ee5 --- /dev/null +++ b/.github/workflows/deploy-storybook.yml @@ -0,0 +1,26 @@ +name: Deploy Storybook to GitHub Pages + +on: + push: + branches: + - main + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Install dependencies + run: npm ci --unsafe-perm + - name: Build Storybook + run: npm run storybook:build + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./storybook-static