V0.4.2 - Maintenance Release #39
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
# This workflows will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: Deploy | |
on: | |
release: | |
types: [created] | |
jobs: | |
tests-and-coverage-latest: | |
name: Tests with latest BoTorch | |
uses: ./.github/workflows/reusable_test.yml | |
with: | |
pinned_botorch: false | |
secrets: inherit | |
tests-and-coverage-pinned: | |
name: Tests with pinned BoTorch | |
uses: ./.github/workflows/reusable_test.yml | |
with: | |
pinned_botorch: true | |
secrets: inherit | |
publish-stable-website: | |
needs: tests-and-coverage-pinned # only run if test step succeeds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
# use stable Botorch | |
pip install -e ".[tutorial]" | |
- name: Publish latest website | |
env: | |
DOCUSAURUS_PUBLISH_TOKEN: ${{ secrets.DOCUSAURUS_PUBLISH_TOKEN }} | |
run: | | |
bash scripts/publish_site.sh -d -v ${{ github.event.release.tag_name }} | |
deploy: | |
needs: tests-and-coverage-pinned # only run if test step succeeds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
# use stable Botorch | |
pip install -e ".[dev,mysql,notebook]" | |
pip install wheel | |
- name: Fetch all history for all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Build wheel | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Deploy to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
verbose: true |