Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Version 0.20.0

Version 0.20.0 #56

Workflow file for this run

name: Dokka
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Generate API documentation
run: ./gradlew dokkaHtmlMultiModule
- name: Deploy API documentation to Github Pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/dokka