From 39e5db278b75706e7054e0c5114dc6c8b55965d1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 27 Feb 2025 19:59:31 +0100 Subject: [PATCH] Clean up --- .github/workflows/build-storybook.yml | 32 --------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/build-storybook.yml diff --git a/.github/workflows/build-storybook.yml b/.github/workflows/build-storybook.yml deleted file mode 100644 index 2a29d2c58..000000000 --- a/.github/workflows/build-storybook.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Deploy Storybook - -on: - push: - branches: - - main - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Build Storybook - run: npm run build:storybook - - - name: Upload Storybook Artifact - uses: actions/upload-artifact@v4 - with: - name: storybook - path: dist/storybook