-
Notifications
You must be signed in to change notification settings - Fork 19
63 lines (57 loc) · 1.33 KB
/
deploy_github_pages.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
name: Deploy docs site
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
generate_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: cue-lang/[email protected]
with:
version: 'v0.7.0'
- name: Generate dist & docs
run: VERBOSE=1 make --file=Makefile build
- name: Upload data
uses: actions/upload-artifact@v4
with:
name: data
path: docs/_data
build:
runs-on: ubuntu-latest
needs: generate_docs
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: data
path: docs/_data
- uses: actions/configure-pages@v4
- uses: actions/jekyll-build-pages@v1
with:
source: docs
destination: _site
- name: Copy search indexes
run: sudo bin/copy_docs_search_indexes
- uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/deploy-pages@v4
id: deployment