Skip to content

Commit

Permalink
ci: fix base64 generator
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed Oct 1, 2023
1 parent 8d20fae commit fa07979
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ jobs:
cache-key: 'flutter-:os:-:version:'
cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:'
- name: Retrieve the secret and decode it to a file
shell: bash
env:
ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }}
run: |
mkdir .env
echo $ENV_PROD_BASE64 | base64 -d > .env/prod.json
echo $ENV_PROD_BASE64 | base64 -di > .env/prod.json
- name: Setup project
run: sh setup.sh
- name: Verify formated files
Expand Down

0 comments on commit fa07979

Please sign in to comment.