Skip to content

Commit

Permalink
Merge pull request #177 from ravwojdyla/rav-add-cd-workflow
Browse files Browse the repository at this point in the history
Add CD workflow
  • Loading branch information
jeromekelleher authored May 3, 2024
2 parents a8ef611 + 6ac3495 commit e8184f1
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 2 deletions.
86 changes: 86 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: CD

on:
push:
branches:
- main
tags:
- '*'
release:
types: [published]

jobs:
packaging:
if: github.repository_owner == 'sgkit-dev'
name: Packaging
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build twine validate-pyproject[all]
- name: Check and install package
run: |
validate-pyproject pyproject.toml
python -m build
python -m twine check --strict dist/*
python -m pip install dist/*.whl
- name: Check vcf2zarr CLI
run: |
vcf2zarr --help
python -m bio2zarr vcf2zarr --help
- name: Check vcfpartition CLI
run: |
vcfpartition --help
python -m bio2zarr vcfpartition --help
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish-to-pypi:
if: github.repository_owner == 'sgkit-dev' && github.event_name == 'release'
needs:
- packaging
runs-on: ubuntu-latest

environment:
name: pypi
url: https://pypi.org/p/bio2zarr
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1


publish-to-testpypi:
if: github.repository_owner == 'sgkit-dev' && github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
needs:
- packaging
runs-on: ubuntu-latest

environment:
name: testpypi
url: https://test.pypi.org/p/bio2zarr

permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: CI
on:
pull_request:
push:
branches: [main, test]
branches:
- main

jobs:
pre-commit:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Build Docs
on:
pull_request:
push:
branches: [main, test]
branches:
- main
tags:
- '*'

Expand Down

0 comments on commit e8184f1

Please sign in to comment.