Skip to content

release docs updated (#879) #264

release docs updated (#879)

release docs updated (#879) #264

Workflow file for this run

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/**'
- 'dashbuilder/**'
- '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: Add benchmark data to website
run: |
mkdir -p antora/_site/keycloak-benchmark/results
gh release download aggregated-benchmarks -D antora/_site/keycloak-benchmark/results --repo keycloak/keycloak-benchmark
env:
GH_TOKEN: ${{ github.token }}
- name: Set up Node.js for DashBuilder
uses: actions/setup-node@v4
with:
node-version: '16.x'
cache: 'yarn'
cache-dependency-path: 'dashbuilder/yarn.lock'
- name: Prepare dashbuilder
working-directory: dashbuilder
run: |
./build.sh
mv dist ../antora/_site/keycloak-benchmark/dashbuilder
- 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