-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41b2c4b
commit 43dcf67
Showing
5 changed files
with
109 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Publish Python docs via GitHub Pages | ||
|
||
# Only run on new tags starting with `py-v` | ||
on: | ||
push: | ||
tags: | ||
- 'py-v*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Deploy Python core docs | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: python/core/ | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# We need to additionally fetch the gh-pages branch for mike deploy | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python 3.11 | ||
id: setup-python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.7.1 | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
installer-parallel: true | ||
|
||
- name: Load cached venv | ||
id: cached-poetry-dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: .venv | ||
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Install dependencies | ||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
run: poetry install --no-interaction --no-root | ||
|
||
- name: Install root project | ||
run: poetry install --no-interaction | ||
|
||
- name: Deploy docs | ||
env: | ||
GIT_COMMITTER_NAME: CI | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
run: | | ||
# Get most recent git tag | ||
# https://stackoverflow.com/a/7261049 | ||
# https://stackoverflow.com/a/3867811 | ||
# We don't use {{github.ref_name}} because if triggered manually, it | ||
# will be a branch name instead of a tag version. | ||
# 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 | ||
# (usually the git tag will have v as the first character) | ||
if ! echo $VERSION | cut -c 1- | grep -q "[A-Za-z]"; then | ||
poetry run mike deploy $VERSION latest --update-aliases --push | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Develop Docs | ||
|
||
## Docs | ||
|
||
View docs: | ||
|
||
``` | ||
poetry run mkdocs serve | ||
``` | ||
|
||
Deploy docs (automatically): | ||
|
||
Push a new tag with the format `py-v*`, such as `py-v0.1.0`. | ||
|
||
Deploy docs (manually): | ||
|
||
``` | ||
poetry run mike deploy VERSION_TAG --update-aliases --push --deploy-prefix python/core/ | ||
``` | ||
|
||
This only needs to be run once ever, to set the redirect from `https://geoarrow.github.io/geoarrow-rs/python/core/` to `https://geoarrow.github.io/geoarrow-rs/python/core/latest/`. | ||
|
||
``` | ||
poetry run mike set-default latest --deploy-prefix python/core/ --push | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters