Skip to content

Commit

Permalink
fix(ci/cd): wrong copy env (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
2paperstar authored Oct 4, 2024
1 parent 0d84ef8 commit e9f5c83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Copy dotenv
if: env.run == 'true'
run: cat ${{ secrets.DOTENV }} > .env
run: echo ${{ secrets.DOTENV }} > .env

- name: Generate files
if: env.run == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
key: cocoapods-${{ hashFiles('ios/Podfile.lock') }}

- name: Copy dotenv
run: cat ${{ secrets.DOTENV }} > .env
run: echo ${{ secrets.DOTENV }} > .env

- name: Generate files
run: |
Expand Down

0 comments on commit e9f5c83

Please sign in to comment.