From ee7a74c044debd30ac8382c6d3abef18c29117ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=8F=99=EC=B0=AC?= <129833370+dongchandev@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:15:19 +0900 Subject: [PATCH] fix: web-deploy.yml --- .github/workflows/web-deploy.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/web-deploy.yml b/.github/workflows/web-deploy.yml index 66339cb..1ff61b6 100644 --- a/.github/workflows/web-deploy.yml +++ b/.github/workflows/web-deploy.yml @@ -18,13 +18,10 @@ jobs: - name: Install Dependencies run: npm install - - name: Create Required Directories - run: mkdir -p ./src/lib/axios - - name: Decode Config Secret id: decode-config run: | - echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ./src/lib/axios/config.json + echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ./src/config.json - name: Build Project run: npm run build