Skip to content

Release v1.0.3 for supporting PIASOmarkerDB client and API #7

Release v1.0.3 for supporting PIASOmarkerDB client and API

Release v1.0.3 for supporting PIASOmarkerDB client and API #7

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- master
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Hatch
run: pip install hatch
- name: Build package
run: hatch build
- name: Publish to PyPI
env:
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
pip install twine
twine upload dist/*