Skip to content

Commit

Permalink
Merge pull request #20 from hollow-leaf/fix/githubAction
Browse files Browse the repository at this point in the history
fix: env create
  • Loading branch information
kidneyweakx authored Aug 23, 2023
2 parents d1a52f8 + d3d89d4 commit a9efea4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ghpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,14 @@ jobs:

- name: Install dependencies
run: pnpm install


- name: Create Env File
run: |
touch apps/web/.env.local
echo NEXT_PUBLIC_PRIVATE_KEY=${{secrets.NEXT_PUBLIC_PRIVATE_KEY}} >> apps/web/.env.local
echo NEXT_PUBLIC_INFURA_API_KEY=${{secrets.NEXT_PUBLIC_INFURA_API_KEY}} >> apps/web/.env.local
echo NEXT_PUBLIC_SEPOLIA_CONTRACT=${{secrets.NEXT_PUBLIC_SEPOLIA_CONTRACT}} >> apps/web/.env.local
- name: Build my App
run: pnpm run build

Expand Down

0 comments on commit a9efea4

Please sign in to comment.