compose-viz/.github/workflows/cd.yml
2022-05-14 22:14:34 +08:00

17 lines
No EOL
284 B
YAML

name: CD
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Publish to PyPi
uses: JRubics/poetry-publish@v1.10
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}