Skip to content

add test cases for tidbcloudy (#28) #7

add test cases for tidbcloudy (#28)

add test cases for tidbcloudy (#28) #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish to PyPI
run: |
curl -sSL https://install.python-poetry.org | python3 - --version 1.6.1
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --build
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}