Skip to content

fix(deps): update junit-framework monorepo to v6.1.3 #843

fix(deps): update junit-framework monorepo to v6.1.3

fix(deps): update junit-framework monorepo to v6.1.3 #843

Workflow file for this run

name: Docs to GitHub Pages
on:
release:
types:
- created
push:
branches: [ "main" ]
# Allow running this workflow manually from the Actions tab
workflow_dispatch:
env:
JVM_VERSION: 25
JVM_DISTRIBUTION: temurin
jobs:
deploy:
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up JDK ${{ env.JVM_VERSION }}
uses: actions/setup-java@v5
with:
java-version: ${{ env.JVM_VERSION }}
distribution: ${{ env.JVM_DISTRIBUTION }}
cache: gradle
- name: 馃悩Setup Gradle
uses: gradle/actions/setup-gradle@9c971963bec38e04b3d30dcc455b5382be2fdbfb # v6.3.0
with:
cache-provider: basic
- name: Generate Dokka Site
run: |-
make clean
make knit apidocs
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: docs/public/apidocs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5