Skip to content

Commit

Permalink
fix(playwright-gh-workflow): create .env file based on repo's secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
doinel1a committed Mar 18, 2024
1 parent b2d4c47 commit 98f368b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Create .env file
run: |
touch .env
echo NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID }} > .env
cat .env
- name: Install PNPM
run: npm i -g pnpm
- name: Install dependencies
Expand Down

0 comments on commit 98f368b

Please sign in to comment.