-
-
Notifications
You must be signed in to change notification settings - Fork 20
43 lines (41 loc) · 1.26 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
name: Website
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- website/**
jobs:
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@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
- name: Install
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/sse' || '' }}
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/sse' || '' }}
with:
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: graphql-sse
prId: ${{ github.event.pull_request.number }}
websiteDirectory: website
buildScript: yarn build
artifactDir: out