Skip to content

Commit

Permalink
[#169] Chagne ENV_PRODUCTION to ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
doannimble committed Aug 7, 2023
1 parent 7ea0ea7 commit 71add25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ios_deploy_to_app_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:

- name: Set up Production env
env:
ENV_PRODUCTION: ${{ secrets.ENV_PRODUCTION }}
ENV: ${{ secrets.ENV }}
run: |
echo -e ENV_PRODUCTION >> .env
echo -e ENV >> .env
- name: Run code generator
run: flutter packages pub run build_runner build --delete-conflicting-outputs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios_deploy_to_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:

- name: Set up Production env
env:
ENV_PRODUCTION: ${{ secrets.ENV_PRODUCTION }}
ENV: ${{ secrets.ENV }}
run: |
echo -e ENV_PRODUCTION >> .env
echo -e ENV >> .env
- name: Run code generator
run: flutter packages pub run build_runner build --delete-conflicting-outputs
Expand Down

0 comments on commit 71add25

Please sign in to comment.