forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 6
102 lines (85 loc) · 2.48 KB
/
documentation.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
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
92
93
94
95
96
97
98
99
100
101
102
name: Keycloak Documentation
on:
push:
branches-ignore:
- main
- dependabot/**
- quarkus-next
pull_request:
workflow_dispatch:
env:
MAVEN_ARGS: "-B -nsu -Daether.connector.http.connectionMaxTtl=25"
concurrency:
# Only cancel jobs for PR updates
group: documentation-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
conditional:
name: Check conditional workflows and jobs
runs-on: ubuntu-latest
outputs:
documentation: ${{ steps.conditional.outputs.documentation }}
steps:
- uses: actions/checkout@v4
- id: conditional
uses: ./.github/actions/conditional
with:
token: ${{ secrets.GITHUB_TOKEN }}
build:
name: Build
if: ${{ needs.conditional.outputs.documentation == 'true' }}
runs-on: ubuntu-latest
needs: conditional
steps:
- uses: actions/checkout@v4
- id: setup-java
name: Setup Java
uses: ./.github/actions/java-setup
- id: maven-cache
name: Maven cache
uses: ./.github/actions/maven-cache
- id: build-test-documentation
name: Build and verify Keycloak documentation
shell: bash
run: |
./mvnw install -Dtest=!ExternalLinksTest -am -pl docs/documentation/tests,docs/documentation/dist -e -Pdocumentation
- id: upload-keycloak-documentation
name: Upload Keycloak documentation
uses: actions/upload-artifact@v3
with:
name: keycloak-documentation
path: docs/documentation/dist/target/*.zip
retention-days: 1
external-links:
name: External links check
if: ${{ needs.conditional.outputs.documentation == 'true' }}
runs-on: ubuntu-latest
needs: conditional
steps:
- uses: actions/checkout@v4
- id: setup-java
name: Setup Java
uses: ./.github/actions/java-setup
- id: maven-cache
name: Maven cache
uses: ./.github/actions/maven-cache
- id: build-test-documentation
name: Build and verify Keycloak documentation
shell: bash
run: |
./mvnw install -Dtest=ExternalLinksTest -am -pl docs/documentation/tests -e -Pdocumentation
check:
name: Status Check - Keycloak Documentation
if: always()
needs:
- conditional
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/status-check
with:
jobs: ${{ toJSON(needs) }}