Docs release #2
This file contains hidden or 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
name: Docs release | |
on: | |
# manually trigger | |
workflow_dispatch: | |
# been called by other workflows | |
workflow_call: | |
jobs: | |
publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy docs | |
run: | | |
export MODE=BUILD | |
export PACKAGE=datajoint | |
export UPSTREAM_REPO=https://github.com/${GITHUB_REPOSITORY}.git | |
export HOST_UID=$(id -u) | |
docker compose -f docs/docker-compose.yaml up --exit-code-from docs --build | |
git push origin gh-pages |