Skip to content

Commit

Permalink
ci: improve decode env
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed Oct 5, 2024
1 parent 90815ff commit e4983bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }}
ENV_DEV_BASE64: ${{ secrets.ENV_DEV_BASE64 }}
run: |
echo $ENV_PROD_BASE64 | base64 --decode > .env/prod.json
echo $ENV_DEV_BASE64 | base64 --decode > .env/dev.json
echo $ENV_PROD_BASE64 | base64 -di > .env/prod.json
echo $ENV_DEV_BASE64 | base64 -di > .env/dev.json
- name: Get Flutter version by FVM
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
with:
Expand Down

0 comments on commit e4983bd

Please sign in to comment.