-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (24 loc) · 967 Bytes
/
build.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
name: Build
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: build
env:
NEXT_PUBLIC_SITE_CONFIG: ${{ secrets.NEXT_PUBLIC_SITE_CONFIG }}
NOTION_ACTIVE_USER: ${{ secrets.NOTION_ACTIVE_USER }}
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}
NOTION_REGISTER_OF_MEMBERS_DATABASE_ID: ${{ secrets.NOTION_REGISTER_OF_MEMBERS_DATABASE_ID }}
NOTION_TOKEN_V2: ${{ secrets.NOTION_TOKEN_V2 }}
# TODO Enable those lines below if you use a Redis cache, you'll also need to configure GitHub Repository Secrets
# REDIS_HOST: ${{ secrets.REDIS_HOST }}
# REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }}
run: pnpm build