Skip to content

0.76.0 (#534)

0.76.0 (#534) #128

Workflow file for this run

name: Publish python package
on:
push:
tags:
- "*.*.*"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Assert tag is from master or release-candidate
run: git branch -a --contains $(git describe --tags) | grep -E "master|release-candidate"
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.1
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}