mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
24 lines
519 B
YAML
24 lines
519 B
YAML
name: Publish to PyPI
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python and Poetry
|
|
uses: abatilo/actions-poetry@v1.5.0
|
|
with:
|
|
python_version: 3.8
|
|
poetry_version: 1.0
|
|
args: install
|
|
- name: Build
|
|
run: poetry build
|
|
- name: Publish
|
|
env:
|
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
|
|
run: poetry publish
|