Skip to content

bump v id

bump v id #14

Workflow file for this run

name: Deploy to PyPi
on:
push:
tags:
- 'v*'
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/titrate
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# retrieve your distributions here
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python --version
pip install -U build
python -m build --sdist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1