File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,10 @@ jobs:
107107 uses : astral-sh/setup-uv@v6
108108 with :
109109 enable-cache : true
110+ - name : extract tag name
111+ run : echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
110112 - name : build docs
111- run : uv run mike deploy
113+ run : uv run mike deploy --update-aliases "v${RELEASE_VERSION}" latest
112114
113115 publish_docs :
114116 name : build docs
Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ init: clean ## initialize a development environment (to be run in virtualenv)
4747 git add " *" " .*"
4848
4949mypy : # # run mypy
50- mypy src/kiara
50+ uv run mypy src/kiara
5151
5252test : # # run tests quickly with the default Python
53- py.test
53+ uv run py.test
5454
5555coverage : # # check code coverage quickly with the default Python
5656 coverage run -m pytest tests
@@ -62,7 +62,7 @@ render-api:
6262 kiara render --source-type base_api --target-type kiara_api item kiara_api template_file=src/kiara/interfaces/python_api/kiara_api.py target_file=src/kiara/interfaces/python_api/kiara_api.py
6363
6464pre-commit : # # run pre-commit on all files
65- pre-commit run --all-files
65+ uv run pre-commit run --all-files
6666
6767doc : # # build documentation
68- mkdocs build
68+ uv run mkdocs build
You can’t perform that action at this time.
0 commit comments