Skip to content

v1.0.3

v1.0.3 #5

Workflow file for this run

name: publish-release
on:
release:
types: [created]
workflow_dispatch:
jobs:
build:
uses: acerbilab/pyvbmc/.github/workflows/build.yml@main
upload_to_pypi:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Download built package
uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- name: Upload to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.pypi_password }}