-
Notifications
You must be signed in to change notification settings - Fork 77
56 lines (52 loc) · 1.28 KB
/
docs-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
name: Publishing Documentation Site
on:
workflow_dispatch:
workflow_run:
workflows:
- "Aggregate Benchmark results"
types:
- completed
push:
branches:
- main
paths:
- '.github/workflows/docs-pages.yml'
- 'antora/**'
- 'doc/**'
concurrency:
# Only run once for latest commit per ref and cancel other (previous) runs.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js for Antora
uses: actions/setup-node@v4
with:
node-version: '16.x'
cache: 'yarn'
cache-dependency-path: 'antora/yarn.lock'
- name: Build docs
working-directory: antora
run: ./build.sh
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: antora/_site/keycloak-benchmark
github-pages:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
name: GitHub Pages
runs-on: ubuntu-latest
needs:
- build
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4