Skip to content

Refactor, add tests and support for pixel data interface v2 (#82) #9

Refactor, add tests and support for pixel data interface v2 (#82)

Refactor, add tests and support for pixel data interface v2 (#82) #9

name: release-deploy
on:
release:
types: [ published ]
jobs:
build_deploy:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.9
- name: Install requirements
run: |
python -m pip install -U pip
python -m pip install twine wheel
- name: Build wheels and sdist
run: |
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v4
with:
name: wheels
path: ./dist
- name: Publish package to PyPi
environment:
name: pypi
url: https://pypi.org/project/pylibjpeg/
permissions:
id-token: write
steps:
- name: Download the wheels
uses: actions/download-artifact@v4
with:
path: dist/
merge-multiple: true
- name: Publish package to PyPi
uses: pypa/gh-action-pypi-publish@release/v1