Small documentation updates #181
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: deploy-and-publish | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: build and deploy docs | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: π Install dependencies with miniconda and python 3.8 | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: compas_slicer | |
environment-file: environment.yml | |
python-version: 3.8 | |
auto-activate-base: false | |
auto-update-conda: true | |
- name: πΆ Conda info | |
run: conda info | |
- name: π Install | |
run: | | |
python -m pip install --no-cache-dir -r requirements-dev.txt | |
- name: π Generate docs | |
if: success() | |
run: | | |
invoke docs --check-links | |
# Get branch/tag/latest name from git | |
GITHUB_REF_REGEX="tags/v([0-9a-zA-Z\.\-]+)|(pull/[0-9]+)|heads/(.+)" | |
if [[ $GITHUB_REF =~ $GITHUB_REF_REGEX ]]; then | |
if [[ $BASH_REMATCH = pull* ]]; then | |
BRANCH_OR_TAG=pull_${BASH_REMATCH##*/} | |
elif [[ $BASH_REMATCH = tags/v* ]]; then | |
# 2nd element is tag, #v replaces prefix v | |
BRANCH_OR_TAG=${BASH_REMATCH[1]#v} | |
else | |
BRANCH_OR_TAG=${BASH_REMATCH##*/} | |
fi; | |
if [[ $BRANCH_OR_TAG = master ]]; then | |
BRANCH_OR_TAG=latest | |
fi; | |
fi; | |
echo "Docs will be deployed to https://compas.dev/compas_slicer/$BRANCH_OR_TAG" | |
mkdir -p deploy/$BRANCH_OR_TAG && mv -T dist/docs deploy/$BRANCH_OR_TAG/ | |
- name: π’ Deploy docs | |
if: success() | |
uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
target_branch: gh-pages | |
build_dir: deploy | |
keep_history: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: π Build release | |
if: success() && startsWith(github.ref, 'refs/tags') | |
run: | | |
python setup.py clean --all sdist bdist_wheel | |
- name: π¦ Publish release to PyPI | |
if: success() && startsWith(github.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.pypi_password }} |