Bump pypa/gh-action-pypi-publish from 1.12.1 to 1.12.2 #187
Workflow file for this run
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
name: Build and Deploy docs | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-name: TEST | |
init-shell: bash | |
create-args: >- | |
python=3 pip | |
--file requirements.txt | |
--file requirements-dev.txt | |
--channel conda-forge | |
- name: Install on pyobis | |
shell: bash -l {0} | |
run: | | |
python -m pip install -e . --no-deps --force-reinstall | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(python setup.py --version) | |
- name: Build documentation | |
shell: bash -l {0} | |
run: | | |
set -e | |
micromamba activate TEST | |
pushd docs | |
make clean html linkcheck | |
popd | |
- name: Deploy | |
if: github.event_name == 'release' || github.event_name == 'push' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_build/html |