Skip to content

bayes-skopt 0.10.9 (19 July 2023) #5

bayes-skopt 0.10.9 (19 July 2023)

bayes-skopt 0.10.9 (19 July 2023) #5

Workflow file for this run

# .github/workflows/release.yml
name: Release
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/setup-python@v2.2.1
with:
python-version: '3.9'
architecture: x64
- run: pip install nox==2023.4.22
- run: pip install nox-poetry==1.0.3
- run: pip install poetry==1.5.1
- run: nox -s tests-3.9
- run: poetry build
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}