Skip to content

Deactivate assertion we cannot fix #31

Deactivate assertion we cannot fix

Deactivate assertion we cannot fix #31

Workflow file for this run

name: Deploy documentation to GitHub Pages
on:
push:
branches: [ main ]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- uses: gradle/actions/setup-gradle@v4
- run: "./gradlew :asciidoctor --no-configuration-cache"
- uses: actions/upload-pages-artifact@v3
with:
path: "./build/docs/asciidoc"
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4