build: drop support for Python 3.6 (#43) #55
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-on-push | |
on: | |
push: | |
branches: | |
- master | |
# any tags | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: | | |
pip install -U pip | |
curl -sSL "https://install.python-poetry.org" | python - --version 1.5.1 | |
echo "${HOME}/.poetry/bin" >> $GITHUB_PATH | |
- name: Set up cache | |
uses: actions/cache@v2 | |
with: | |
path: .venv | |
key: venv-ubuntu-latest-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry run pip install -U pip | |
poetry install --with codestyle,test,docs | |
- name: make docs | |
run: | | |
rm -rf builds | |
git fetch --all --tags | |
poetry run sphinx-multiversion docs/ builds/ | |
- name: commit documentation changes | |
env: | |
TAG: "${{ github.event.release.tag_name }}" | |
run: | | |
git clone https://github.com/catalyst-team/hydra-slayer.git --branch gh-pages --single-branch gh-pages | |
cd gh-pages | |
rm -rf master | |
\cp -a ../builds/* . | |
# commit changes | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "${TAG:=master docs}" || true | |
- name: push changes | |
uses: ad-m/github-push-action@master | |
with: | |
branch: gh-pages | |
directory: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} |