Skip to content

Commit

Permalink
Merge branch 'main' into kyle/use-pyo3-object-store
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Nov 13, 2024
2 parents 4c30850 + 8bad0f6 commit a6b94bd
Show file tree
Hide file tree
Showing 70 changed files with 701 additions and 3,029 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/python-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,13 @@ jobs:
# Then remove `py-` from the tag
VERSION=$(git describe --tags --match="py-*" --abbrev=0 | cut -c 4-)
# Only push docs if no letters in git tag after the first character
# Only publish docs as latest version if no letters in git tag
# after the first character
# (usually the git tag will have v as the first character)
if echo $VERSION | cut -c 1- | grep -q "[A-Za-z]"; then
# Note the `cut` index is 1-ordered
if echo $VERSION | cut -c 2- | grep -q "[A-Za-z]"; then
uv run mike deploy $VERSION latest --update-aliases --push --deploy-prefix python/
else
# For beta versions publish but don't set as latest
uv run mike deploy $VERSION --update-aliases --push --deploy-prefix python/
fi
14 changes: 12 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a6b94bd

Please sign in to comment.