From 7bcd94846055c816a07c2f51264e01786e3c77db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=A0=EC=9A=A9=EC=A4=80?= Date: Mon, 12 Feb 2024 15:15:16 +0900 Subject: [PATCH] cicd: working directory --- .github/workflows/gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 0cfd30a..24ea7e5 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -12,8 +12,6 @@ jobs: steps: - name: Checkout 코드 uses: actions/checkout@v4 - with: - path: 'demo' - name: Node.js 설치 uses: actions/setup-node@v4 @@ -22,12 +20,14 @@ jobs: - name: 의존성 설치 run: npm install + working-directory: './demo' - name: 빌드 run: npm run build + working-directory: './demo' - name: gh-pages 브랜치로 배포 uses: peaceiris/actions-gh-pages@v3 with: - publish_dir: ./build + publish_dir: ./build/demo publish_branch: gh-pages