Skip to content

Merge pull request #52 from prio-data/fix_message_return #91

Merge pull request #52 from prio-data/fix_message_return

Merge pull request #52 from prio-data/fix_message_return #91

Workflow file for this run

name: ci
on:
push:
branches: master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
name: "Build and deploy to pypi"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.11"
architecture: "x64"
- name: "Dependencies"
run: |
pip install poetry twine
- name: "Build"
run: poetry build
- name: "Publish"
run: |
twine upload dist/* --username __token__ --skip-existing --password ${{ secrets.PYPI_API_TOKEN }}