mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-18 13:08:54 +02:00
16 lines
391 B
YAML
16 lines
391 B
YAML
name: Release
|
|
on:
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
architecture: 'x64'
|
|
- run: pip install poetry==1.1.12
|
|
- run: poetry build
|
|
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}
|