update github actions update github actions update github actions update github actions update github actions update github actions update github actions update github actions update github actions update github actions
18 lines
359 B
YAML
18 lines
359 B
YAML
name: pypi
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
- uses: dschep/install-poetry-action@v1.3
|
|
- name: Pypi Publish
|
|
run: |
|
|
make build
|
|
make publish |