Merge pull request #30 from hollow-leaf/feat/README.md #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend deploy | |
on: | |
push: | |
branches: | |
- main # The branch the action should deploy from. | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Install dependencies | |
run: pnpm install | |
- name: Create Env File | |
run: | | |
touch ./apps/web/.env | |
echo NEXT_PUBLIC_PRIVATE_KEY=${{secrets.NEXT_PUBLIC_PRIVATE_KEY}} >> ./apps/web/.env | |
echo NEXT_PUBLIC_INFURA_API_KEY=${{secrets.NEXT_PUBLIC_INFURA_API_KEY}} >> ./apps/web/.env | |
echo NEXT_PUBLIC_SEPOLIA_CONTRACT=${{secrets.NEXT_PUBLIC_SEPOLIA_CONTRACT}} >> ./apps/web/.env | |
- name: Build my App | |
run: pnpm run build | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: apps/web/out | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |