Merge pull request #38 from HideyoshiNakazone/implementa-novo-deploy-secrets

Fixes Github Actions
This commit is contained in:
2023-10-09 02:06:39 -03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ jobs:
- name: Create Config Json File - name: Create Config Json File
run: | run: |
echo ${{ secrets.CONFIG_JSON }} | base64 -d > config.json echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json
- name: Inserts Prod Enviromental Variables - name: Inserts Prod Enviromental Variables
run: | run: |

View File

@@ -19,7 +19,7 @@ jobs:
- name: Create Config Json File - name: Create Config Json File
run: | run: |
echo ${{ secrets.CONFIG_JSON }} | base64 -d > config.json echo "${{ secrets.CONFIG_JSON }}" | base64 -d > config.json
- name: Inserts Prod Enviromental Variables - name: Inserts Prod Enviromental Variables
run: | run: |