Skip to content

Commit

Permalink
Merge pull request #18 from hollow-leaf/fix/githubAction
Browse files Browse the repository at this point in the history
fix: add env into action
  • Loading branch information
kidneyweakx authored Aug 23, 2023
2 parents 194d8ba + be0bda6 commit 830dc35
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions .github/workflows/ghpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,26 @@ on:
push:
branches:
- main # The branch the action should deploy from.
permissions:
contents: read
pages: write
id-token: write

env:
NEXT_PUBLIC_PRIVATE_KEY: ${{secrets.NEXT_PUBLIC_PRIVATE_KEY}}
NEXT_PUBLIC_INFURA_API_KEY: ${{secrets.NEXT_PUBLIC_INFURA_API_KEY}}
NEXT_PUBLIC_SEPOLIA_CONTRACT: ${{secret.NEXT_PUBLIC_SEPOLIA_CONTRACT}}

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3

- name: Use Node.js 16.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '16.x'

Expand All @@ -30,9 +40,18 @@ jobs:
- name: Build my App
run: pnpm run build

- name: Deploy 🚀
uses: JamesIves/github-pages-[email protected]
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: apps/web/out # The folder the action should deploy.
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

0 comments on commit 830dc35

Please sign in to comment.