-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 1.32 KB
/
python-publish.yml
File metadata and controls
36 lines (29 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Upload Python Package
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Publish python poetry package
# You may pin to the exact commit or the version.
# uses: JRubics/poetry-publish@b71e946be561eaf8bfb7562ecc97c26fb8583070
uses: JRubics/poetry-publish@v1.17
with:
# The version of python to install
python_version: 3.8 # optional, default is latest
# The version of poetry to install
poetry_version: 1.1.6 # optional, default is latest
# API token to authenticate when uploading package to PyPI (https://pypi.org/manage/account/) or TestPyPI (https://test.pypi.org/manage/account/)
pypi_token: ${{ secrets.PYPI_KEY }} # optional
# Name of a repository where the package will be uploaded
repository_name: readability_improver # optional