Skip to content

NMS 1.20.5

NMS 1.20.5 #50

Workflow file for this run

name: Build, test, and deploy API docs
on:
push:
branches: [ master ]
paths-ignore: [ 'docs/**', 'README.md' ]
pull_request:
branches: [ master ]
release:
types: [published]
workflow_dispatch:
permissions:
contents: write
pages: write
actions: write
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build and run tests
id: build
run: |
if ! ./gradlew shadowJar; then
# Address a rare unit test failure very likely to be a test-harness-related
# race condition.
echo "Build failed, retrying once"
if ! ./gradlew shadowJar; then
exit 1
fi
fi
- name: Generate API documentation
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' }}
run: |
VERSION=$(git tag --sort=committerdate | tail -1)
echo Generating API documentation for version $VERSION
./gradlew -Pversion=$VERSION dokkaHtmlMultiModule
- name: Deploy API documentation to Github Pages
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: /build/dokka/htmlMultiModule
target-folder: api