-
-
Notifications
You must be signed in to change notification settings - Fork 164
59 lines (56 loc) · 1.75 KB
/
website.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
name: Website
on:
push:
branches:
- master
pull_request:
branches:
- master
# we always want new site previews because the api reference changes are in code
# paths:
# - website/**
jobs:
check-types:
name: Check types
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup and install
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
working-directory: website
- name: Check
working-directory: website
run: yarn check:types
deploy:
name: Deploy
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@v4
- name: Setup
uses: the-guild-org/shared-config/setup@v1
with:
node-version-file: .node-version
- name: Install
working-directory: website
run: yarn install
- name: Generate documentation
run: yarn gendocs
- name: Deploy
uses: the-guild-org/shared-config/website-cf@main
env:
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/ws' || '' }}
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/ws' || '' }}
with:
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: graphql-ws
prId: ${{ github.event.pull_request.number }}
websiteDirectory: website
buildScript: yarn build
artifactDir: out