We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80325f4 commit 21038b2Copy full SHA for 21038b2
.github/workflows/web-deploy.yml
@@ -18,10 +18,14 @@ jobs:
18
- name: Install Dependencies
19
run: npm install
20
21
+ - name: Create Required Directories
22
+ run: mkdir -p ./src/lib/axios
23
+
24
- name: Decode Config Secret
25
id: decode-config
26
run: |
- 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
29
- name: Build Project
30
run: npm run build
31
0 commit comments