Minor refactoring #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update page | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Get the latest tag | |
run: echo "version=$(git describe --tags --abbrev=0 | cut -c 2-)" >> $GITHUB_ENV | |
- name: Replace current version in documentation | |
uses: cschleiden/replace-tokens@master | |
with: | |
files: 'docs/getting-started.md' | |
env: | |
entries: "${{ env.entries }}" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Install mkdocs | |
run: pip install --upgrade pip && pip install mkdocs mkdocs-gen-files | |
- name: Setup git | |
run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com' | |
- name: Publish docs | |
run: mkdocs gh-deploy |