Configure PRODIGY pipeline for WES execution with S3 and Harbor
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

This commit is contained in:
2026-03-17 16:38:16 +01:00
commit 19fd443501
38 changed files with 16328 additions and 0 deletions

34
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
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