Files
prodigy/.github/workflows/publish.yml
Olamide Isreal 19fd443501
Some checks failed
ci / test (3.10) (push) Has been cancelled
ci / test (3.11) (push) Has been cancelled
ci / test (3.12) (push) Has been cancelled
ci / test (3.13) (push) Has been cancelled
ci / test (3.9) (push) Has been cancelled
Configure PRODIGY pipeline for WES execution with S3 and Harbor
2026-03-17 16:38:16 +01:00

35 lines
711 B
YAML

name: publish to pypi
on:
release:
types: [published]
jobs:
pypi_release:
name: builds and publishes to pypi
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/prodigy-prot
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade build
- name: build
run: |
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1