matrix-webhook/.github/workflows/pypi.yml

16 lines
300 B
YAML
Raw Normal View History

2021-07-18 15:09:51 -04:00
name: PyPI
on:
push:
tags:
- 'v*'
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip install -U poetry twine wheel
- run: poetry build
- run: twine upload --non-interactive -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/*