2022-05-08 09:24:46 +02:00
|
|
|
name: CD
|
2022-05-08 18:52:20 +02:00
|
|
|
|
2022-05-08 09:24:46 +02:00
|
|
|
on:
|
2022-05-14 16:14:34 +02:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
2022-05-08 09:24:46 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-05-14 16:14:34 +02:00
|
|
|
|
2022-05-08 09:24:46 +02:00
|
|
|
- name: Build and Publish to PyPi
|
|
|
|
uses: JRubics/poetry-publish@v1.10
|
|
|
|
with:
|
2022-05-16 20:36:41 +02:00
|
|
|
pypi_token: ${{ secrets.PYPI_TOKEN }}
|
|
|
|
extra_build_dependency_packages: "graphviz"
|