Skip to content

Publish Marvin to PyPI #84

Publish Marvin to PyPI

Publish Marvin to PyPI #84

Workflow file for this run

name: Publish Marvin to PyPI
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish-pypi-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: python3 -m pip install --upgrade build && python3 -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true