Skip to content

limit sonia/sonnia versions to ensure passing tests #23

limit sonia/sonnia versions to ensure passing tests

limit sonia/sonnia versions to ensure passing tests #23

name: Publish to PyPI
on:
push:
branches:
- master
paths: ['**.py', '**.yaml']
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}