forked from mirrors/jj
745f5b7f0e
1. Add --no-root to poetry invocations. Poetry 1.7 displays an error otherwise (though things still work) https://github.com/orgs/python-poetry/discussions/8622 https://github.com/python-poetry/poetry/issues/1132 2. Document https://github.com/python-poetry/poetry/issues/8623
18 lines
880 B
Bash
Executable file
18 lines
880 B
Bash
Executable file
#!/bin/sh
|
|
# Set up a virtual environment with the required tools, build, and deploy the docs.
|
|
#
|
|
# Run from the root directory of the project as
|
|
# .github/scripts/docs-build-deploy 'https://martinvonz.github.io' prerelease main
|
|
# All arguments after the first are passed to `mike deploy`, run
|
|
# `poetry run -- mike deploy --help` for options. Note that `mike deploy`
|
|
# creates a commit directly on the `gh-pages` branch.
|
|
set -ev
|
|
|
|
export "SITE_URL_FOR_MKDOCS=$1"; shift
|
|
# https://github.com/python-poetry/poetry/issues/1917 and
|
|
# https://github.com/python-poetry/poetry/issues/8623
|
|
export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring
|
|
poetry install --no-root # Only really needed once per environment unless there are updates
|
|
# TODO(ilyagr): The new default "alias-type" is symlink, we should consider
|
|
# switching to it.
|
|
poetry run -- mike deploy --alias-type redirect "$@"
|