Skip to content

Update group id to club.minnced #25

Update group id to club.minnced

Update group id to club.minnced #25

Workflow file for this run

name: Generate dokka github pages
on:
push:
branches: [ master ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: temurin
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Generate documentation directory
uses: gradle/gradle-build-action@v2.4.2
with:
arguments: dokkaHtml
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build/dokka/html
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main