2023-03-28 10:35:27 +00:00
|
|
|
name: Keycloak Documentation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- main
|
|
|
|
- dependabot/**
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2023-12-05 07:30:11 +00:00
|
|
|
env:
|
|
|
|
MAVEN_ARGS: "-B -nsu -Daether.connector.http.connectionMaxTtl=25"
|
|
|
|
|
2023-03-28 10:35:27 +00:00
|
|
|
concurrency:
|
|
|
|
# Only cancel jobs for PR updates
|
2023-07-27 04:26:03 +00:00
|
|
|
group: documentation-${{ github.ref }}
|
2023-03-28 10:35:27 +00:00
|
|
|
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:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: conditional
|
|
|
|
uses: ./.github/actions/conditional
|
2023-07-25 13:43:53 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
if: ${{ needs.conditional.outputs.documentation == 'true' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: conditional
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: setup-java
|
|
|
|
name: Setup Java
|
2023-07-26 10:35:21 +00:00
|
|
|
uses: ./.github/actions/java-setup
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: maven-cache
|
|
|
|
name: Maven cache
|
|
|
|
uses: ./.github/actions/maven-cache
|
|
|
|
|
2023-09-19 09:04:01 +00:00
|
|
|
- id: build-test-documentation
|
|
|
|
name: Build and verify Keycloak documentation
|
2023-03-28 10:35:27 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-12-05 07:30:11 +00:00
|
|
|
./mvnw install -Dtest=!ExternalLinksTest -am -pl docs/documentation/tests,docs/documentation/dist -e -Pdocumentation
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: upload-keycloak-documentation
|
|
|
|
name: Upload Keycloak documentation
|
2024-01-02 15:01:00 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2023-03-28 10:35:27 +00:00
|
|
|
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:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: setup-java
|
|
|
|
name: Setup Java
|
2023-07-26 10:35:21 +00:00
|
|
|
uses: ./.github/actions/java-setup
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
- id: maven-cache
|
|
|
|
name: Maven cache
|
|
|
|
uses: ./.github/actions/maven-cache
|
|
|
|
|
2023-09-19 09:04:01 +00:00
|
|
|
- id: build-test-documentation
|
|
|
|
name: Build and verify Keycloak documentation
|
2023-03-28 10:35:27 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-12-05 07:30:11 +00:00
|
|
|
./mvnw install -Dtest=ExternalLinksTest -am -pl docs/documentation/tests -e -Pdocumentation
|
2023-03-28 10:35:27 +00:00
|
|
|
|
|
|
|
check:
|
|
|
|
name: Status Check - Keycloak Documentation
|
2023-07-21 09:51:10 +00:00
|
|
|
if: always()
|
2023-03-28 10:35:27 +00:00
|
|
|
needs:
|
2023-09-05 06:34:41 +00:00
|
|
|
- conditional
|
2023-07-28 05:04:16 +00:00
|
|
|
- build
|
2023-03-28 10:35:27 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-28 05:04:16 +00:00
|
|
|
- uses: ./.github/actions/status-check
|
2023-03-28 10:35:27 +00:00
|
|
|
with:
|
2023-07-28 05:04:16 +00:00
|
|
|
jobs: ${{ toJSON(needs) }}
|