-
Notifications
You must be signed in to change notification settings - Fork 3
91 lines (78 loc) · 2.72 KB
/
website.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: website
on:
push:
branches:
- master
pull_request:
paths:
- "libs/config/conductor.schema.json"
- "website/**"
branches:
- master
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: figure out versions
id: versions
working-directory: ./website
run:
PNPM_VERSION=$(cat package.json | jq -r '.packageManager' | awk -F@ '{print $2}')
NODE_VERSION=$(cat package.json | jq -r '.engines.node' | awk -F= '{print $2}')
echo "pnpm=$PNPM_VERSION" >> $GITHUB_OUTPUT
echo "nodejs=$NODE_VERSION" >> $GITHUB_OUTPUT
- uses: the-guild-org/shared-config/setup@main
name: setup env
with:
nodeVersion: ${{ steps.versions.outputs.nodejs }}
packageManager: pnpm
packageManagerVersion: ${{ steps.versions.outputs.pnpm }}
workingDirectory: ./website
- name: prettier:check
working-directory: ./website
run: "pnpm prettier:check"
config-json-schema:
runs-on: ubuntu-22.04
name: config-json-schema / integrity
steps:
- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: setup environment
uses: ./.github/actions/setup
- name: generate config json schema
run: cargo run --bin generate-config-schema
- name: check diff
run: git diff --exit-code ./libs/config/conductor.schema.json
deployment:
runs-on: ubuntu-latest
if:
github.event.pull_request.head.repo.full_name == github.repository || github.event_name ==
'push'
steps:
- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- uses: the-guild-org/shared-config/setup@main
name: setup env
with:
nodeVersion: 20
packageManager: pnpm
workingDirectory: website
- uses: the-guild-org/shared-config/website-cf@main
name: build and deploy website
env:
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/gateway' || '' }}
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/gateway' || '' }}
with:
cloudflareApiToken: ${{ secrets.WEBSITE_CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.WEBSITE_CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: conductor-t2
prId: ${{ github.event.pull_request.number }}
mainBranch: master
websiteDirectory: website
buildScript: pnpm build
artifactDir: out