From 4beaf6fda4e4af0d73709580feaed67d3e0d2296 Mon Sep 17 00:00:00 2001 From: Q Kim Date: Thu, 5 Oct 2023 16:04:14 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EC=8A=A4=ED=86=A0=EB=A6=AC=EB=B6=81?= =?UTF-8?q?=20=EB=B0=B0=ED=8F=AC=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 개인 github access token 필요 --- .github/workflows/storybook-deploy.yml | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/storybook-deploy.yml diff --git a/.github/workflows/storybook-deploy.yml b/.github/workflows/storybook-deploy.yml deleted file mode 100644 index d456489..0000000 --- a/.github/workflows/storybook-deploy.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Deploy Storybook to Github Pages - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Set up Repository - uses: actions/checkout@v3 - - - name : Set up Node 18.16.0 - uses: actions/setup-node@v3 - with: - node-version: 18.16.0 - - - name: Cache node_modules - id: cache - uses: actions/cache@v3 - with: - path: '**/node_modules' - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: npm clean install - run: npm ci - if: steps.cache.outputs.cache-hit != 'true' - - - name: deploy - run: npm run deploy \ No newline at end of file