Skip to content

Commit

Permalink
automatically release code to pypi on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Acribbs committed Apr 4, 2024
1 parent 4ecc5ca commit fb2e2a5
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Publish cgat-apps wheels to PyPI and TestPyPI

on:
push:
branches:
- v[0-9]+.[0-9]+.x
tags:
- v*
release:
types:
- published

jobs:

build_sdist:

runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macos]
python-version: [3.10]

steps:
- name: Checkout cgat-apps
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install prerequisite Python libraries
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Create source distribution
run: python setup.py sdist bdist_wheel

- uses: actions/upload-artifact@v2
with:
path: dist/*.tar.gz

- uses: actions/upload-artifact@v2
with:
path: dist/*.whl

upload_pypi:

needs: [build_sdist]
runs-on: ubuntu-latest

steps:
- name: Get Artifacts
uses: actions/download-artifact@v2
with:
name: artifact
path: dist

- name: Publish distribution to Test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish distribution to PyPI
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit fb2e2a5

Please sign in to comment.