Skip to content

[build] fix building documentation #29

[build] fix building documentation

[build] fix building documentation #29

Workflow file for this run

name: Build Master
on:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: "gradle"
- name: Build
run: ./gradlew build
- name: Build documentation
run: ./gradlew buildDocumentation
- name: Check repository for commits
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Build created uncommitted changes in repository"
exit 1
fi
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: 'build/dokka/html'
- name: Deploy to Documentation GitHub Pages
id: deployment
uses: actions/deploy-pages@v1