Skip to content

Commit

Permalink
CI documentation fixing (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioangatop authored Dec 9, 2024
1 parent 453a12e commit 80708e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
- name: Deploy Documentation
run: |
git fetch origin gh-pages:gh-pages
nox -s docs -- deploy --update-aliases main
tag="${{ github.ref_name }}"
DOC_VERSION=${tag%.*}
nox -s docs -- deploy --update-aliases "$DOC_VERSION" main
git push origin gh-pages
- name: Publish package distributions to PyPI
run: nox -s publish -- --no-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
git fetch origin gh-pages:gh-pages
tag="${{ github.ref_name }}"
DOC_VERSION=${tag%.*}
nox -s docs -- deploy --alias-type=copy --update-aliases "$DOC_VERSION" latest
nox -s docs -- deploy --alias-type=copy --update-aliases "$DOC_VERSION"
git push origin gh-pages
- name: Publish package distributions to PyPI
run: nox -s publish -- --no-build
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "pdm.backend"

[project]
name = "kaiko-eva"
version = "0.1.5"
version = "0.1.6"
description = "Evaluation Framework for oncology foundation models."
keywords = [
"machine-learning",
Expand Down

0 comments on commit 80708e1

Please sign in to comment.