Reapply "Prevent login page cookie issues with a descriptive error me… #296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |