We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7020553 commit 56710f7Copy full SHA for 56710f7
.github/workflows/ci.yml
@@ -1,8 +1,8 @@
1
-name: test and deploy docs
+name: deploy docs and publish package
2
on:
3
push:
4
- branches:
5
- - main
+ tags:
+ - "*"
6
permissions:
7
contents: write
8
jobs:
@@ -21,4 +21,4 @@ jobs:
21
cache-dependency-path: 'pyproject.toml'
22
- run: pip install -e .\[all,docs\]
23
- run: pytest -x -vv --cov=src tests/
24
- - run: mkdocs gh-deploy --force
+ - run: mike deploy -u -p ${{ github.ref_name }} latest
0 commit comments