Skip to content

Commit

Permalink
chore: appends to .env file rather than overwriting
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarenaldi committed Nov 29, 2024
1 parent c179afc commit 566462a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
- name: Setup Environment Variables
shell: bash
run: |
echo "PRIVATE_KEY=${{ secrets.PRIVATE_KEY }}" > .env
echo "TEST_APP=${{ vars.TEST_APP }}" > .env
echo "TEST_ACCOUNT=${{ vars.TEST_ACCOUNT }}" > .env
echo "PRIVATE_KEY=${{ secrets.PRIVATE_KEY }}" >> .env
echo "TEST_APP=${{ vars.TEST_APP }}" >> .env
echo "TEST_ACCOUNT=${{ vars.TEST_ACCOUNT }}" >> .env
- name: Run Tests
run: pnpm test:storage && pnpm test:client

0 comments on commit 566462a

Please sign in to comment.