We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822b626 commit 3ce7496Copy full SHA for 3ce7496
2 files changed
.github/workflows/deploy_docs.yml
@@ -4,6 +4,9 @@ on:
4
push:
5
branches:
6
- main
7
+ # paths:
8
+ # - "docs/**"
9
+ # - "mkdocs.yml"
10
release:
11
types: [published]
12
@@ -40,8 +43,10 @@ jobs:
40
43
run: |
41
44
if [ "${{ github.event_name }}" = "release" ]; then
42
45
uv run mike deploy --push --update-aliases ${{ github.event.release.tag_name }} latest
46
+ uv run mike set-default --push ${{ github.event.release.tag_name }}
47
else
48
uv run mike deploy --push main
49
+ uv run mike set-default --push main
50
fi
51
52
deploy:
0 commit comments