From 32a3f5d56857631dfb5a69f3de0689b3949513aa Mon Sep 17 00:00:00 2001 From: Arne Molland Date: Wed, 3 Aug 2022 02:12:27 +0200 Subject: [PATCH] actions: delete storybook workflow --- .github/workflows/storybook.yaml | 48 -------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/storybook.yaml diff --git a/.github/workflows/storybook.yaml b/.github/workflows/storybook.yaml deleted file mode 100644 index dcc8f76..0000000 --- a/.github/workflows/storybook.yaml +++ /dev/null @@ -1,48 +0,0 @@ -#name: Publish to Storybook/Chromatic -#on: -# push: -# branches: [main] -# -#jobs: -# storybook: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# -# - uses: actions/setup-node@v2 -# with: -# node-version: "18" -# -# - name: Install dependencies -# run: npm ci -# -# - name: Build Storybook -# run: npm run build:storybook -# -# - name: Deploy to GitHub Pages -# uses: JamesIves/github-pages-deploy-action@4.1.4 -# with: -# branch: gh-pages -# folder: storybook-static -# -# chromatic: -# needs: storybook -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# with: -# fetch-depth: 0 -# -# - uses: actions/setup-node@v2 -# with: -# node-version: "18" -# -# - name: Install dependencies -# run: npm ci -# -# - name: Publish to Chromatic -# uses: chromaui/action@v1 -# with: -# token: ${{ secrets.GITHUB_TOKEN }} -# projectToken: ${{ secrets.CHROMATIC_TOKEN }} -#