Skip to content

Commit

Permalink
fix web-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dongchandev authored Oct 14, 2024
1 parent 028a577 commit 736cf1c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,16 @@ jobs:
- name: Decode Config Secret
id: decode-config
run: |
echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ./src/config/config.json
echo "${{ github.event.client_payload.config_secret }}" | base64 --decode > ./src/config/temp_config.json
- name: Set Config Json File
id: create-json
uses: jsdaniell/create-json@v1.2.2
with:
name: "config.json"
json: ${{ steps.decode-config.outputs.result }}
dir: './src/config'

- name: Build Project
working-directory: .
run: npm run build
Expand Down

0 comments on commit 736cf1c

Please sign in to comment.