Skip to content

Bump org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm from 0.3.7 to 0.3.8 #2690

Bump org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm from 0.3.7 to 0.3.8

Bump org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm from 0.3.7 to 0.3.8 #2690

Workflow file for this run

name: Documentation
on:
push:
pull_request:
release:
types: [ published ]
env:
JDK_DISTRIBUTION: zulu
JDK_VERSION: 17
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch history and tags; necessary for computing app version.
- name: Set up JDK ${{ env.JDK_VERSION }}
uses: actions/setup-java@v4
with:
distribution: ${{ env.JDK_DISTRIBUTION }}
java-version: ${{ env.JDK_VERSION }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Install pipenv
run: pipx install pipenv
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pipenv'
- name: Generate documentation with MkDocs
run: './gradlew printVersion :docs:mkdocsBuild'
- name: Set up Git credentials
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Publish documentation to GitHub Pages
if: github.event_name == 'release'
run: './gradlew :docs:mkdocsPublish'