From 54afd702032f5566ddc0cf843055dbbc67205886 Mon Sep 17 00:00:00 2001 From: Legitgoons Date: Tue, 28 May 2024 22:57:32 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20publish.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit package-lock.json 오류로 인해 cache-dependency-path속성 삭제 --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index edc1345..0248597 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,13 +30,12 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - cache-dependency-path: package-lock.json - name: Install dependencies run: npm install - name: Build Storybook - run: npm build-storybook + run: npm run build-storybook - name: Deploy Storybook to GitHub Pages if: matrix.node-version == 18