Bump version to 4.0.0 (#868) #70
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
# Copyright 2020 The Trieste Contributors | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Release documentation build and pypi upload | |
on: | |
workflow_dispatch: | |
push: | |
tags: v[0-9]+.[0-9]+.[0-9]+* | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
ref: gh-pages-history | |
path: gh-pages-history | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- run: | | |
pip install --upgrade pip | |
pip install .[qhsri] -r notebooks/requirements.txt -c notebooks/constraints.txt | |
pip install -I box2d-kengz -c notebooks/constraints.txt | |
pip install -r docs/requirements.txt -c docs/constraints.txt | |
TEMP_DEB="$(mktemp)" && | |
wget -O "$TEMP_DEB" 'https://github.com/jgm/pandoc/releases/download/2.10.1/pandoc-2.10.1-1-amd64.deb' && | |
sudo dpkg -i "$TEMP_DEB" | |
rm -f "$TEMP_DEB" | |
- run: | | |
(cd docs ; make html ; make html) | |
TMP_DIR=$(mktemp -d -p $(pwd)) | |
VERSION=$(cat trieste/VERSION) | |
mv docs/_build/html $TMP_DIR/$VERSION | |
sed -e "s/\$VERSION/$VERSION/g" redirect.html > $TMP_DIR/index.html | |
sed -e "s/\$VERSION/$VERSION/g" redirect_autoapi.html > $TMP_DIR/autoapi.html | |
sed -e "s/\$VERSION/$VERSION/g" redirect_tutorials.html > $TMP_DIR/tutorials.html | |
cp versions.json $TMP_DIR/ | |
cd gh-pages-history | |
git rm -r --ignore-unmatch docs/$VERSION | |
rm -rf docs/$VERSION | |
mv -f $TMP_DIR/* docs/ | |
rmdir $TMP_DIR | |
git add docs | |
git config --global user.email "none" | |
git config --global user.name "github-actions-bot" | |
git commit -m "build documentation for $VERSION" | |
git push | |
upload-pypi: | |
needs: docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install twine, wheel and build | |
run: | | |
pip install twine wheel build | |
- name: Create pip packages | |
run: | | |
python -m build --sdist --wheel | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_PASSWORD }} |