Skip to content

Commit 21038b2

Browse files
authored
fix: web-deploy.yml
1 parent 80325f4 commit 21038b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/web-deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ jobs:
1818
- name: Install Dependencies
1919
run: npm install
2020

21+
- name: Create Required Directories
22+
run: mkdir -p ./src/lib/axios
23+
2124
- name: Decode Config Secret
2225
id: decode-config
2326
run: |
24-
echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ${{ github.event.client_payload.repo_name }}/src/lib/axios/config.json
27+
echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ./src/lib/axios/config.json
28+
2529
- name: Build Project
2630
run: npm run build
2731

0 commit comments

Comments
 (0)