Skip to content

Update dependency org.jetbrains.kotlinx.binary-compatibility-validato… #532

Update dependency org.jetbrains.kotlinx.binary-compatibility-validato…

Update dependency org.jetbrains.kotlinx.binary-compatibility-validato… #532

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
# TODO: replace with on push tag https://github.com/actions/deploy-pages/issues/76
workflow_run:
workflows: [Publish Release]
types:
- completed
jobs:
publish:
runs-on: ubuntu-latest
if: github.repository == 'freeletics/flowredux'
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 22
- name: Install Android SDK
run: ./.github/android-sdk.sh
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install MkDocs Material
run: pip install mkdocs-material
- name: Build docs
# need to set the version name because for the default committed snapshot version
# dokkaHtml tasks get skipped
run: ./gradlew dokkaHtml -PVERSION_NAME=
- name: Copy docs
run: |
cp README.md docs/index.md
sed -i '/^\[\!\[GitHub release/d' docs/index.md
sed -i "s/<latest-version>/$(git describe --tags --abbrev=0)/" docs/index.md
cp CHANGELOG.md docs/changelog.md
mkdir -p docs/API/dsl
cp -R flowredux/build/dokka/html/. docs/API/dsl
mkdir -p docs/API/compose
cp -R compose/build/dokka/html/. docs/API/compose
- name: Build MkDocs
run: mkdocs build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4