Skip to content

Bump version to 0.21.0 (#3056) #901

Bump version to 0.21.0 (#3056)

Bump version to 0.21.0 (#3056) #901

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
env:
MISE_LOCKED: "1"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: jdx/mise-action@v4
with:
version: 2026.4.27
cache_key_prefix: mise-docs-${{ github.job }}
- name: Generate CLI docs
run: go run ./tools/gendocs/main.go -o docs/cli.md
- name: Copy top-level docs like README and CONTRIBUTING
run: |
sed 's/docs\///g' README.md > ./docs/README.md
cp CONTRIBUTING.md ./docs/
- name: Deploy
run: |
pip install mkdocs-material
mkdocs gh-deploy --force