Skip to content

Merge pull request #53 from prio-data/update_documentation #92

Merge pull request #53 from prio-data/update_documentation

Merge pull request #53 from prio-data/update_documentation #92

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 }}