-
Notifications
You must be signed in to change notification settings - Fork 2
73 lines (60 loc) · 1.87 KB
/
ghpage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Frontend deploy
on:
push:
branches:
- main # The branch the action should deploy from.
paths:
- 'apps/web/**' # The folder the action should deploy.
- '.github/workflows/**' # The workflow folder the action should deploy.
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: pnpm
- 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
echo NEXT_PUBLIC_SEPOLIA_WEIGHT_MARKET_CONTRACT=${{secrets.NEXT_PUBLIC_SEPOLIA_WEIGHT_MARKET_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