Skip to content

Commit 9d627b3

Browse files
authored
poetry-publish
1 parent df94b69 commit 9d627b3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/python-publish.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Python package
2+
on:
3+
push:
4+
tags:
5+
- "v*.*.*"
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Build and publish to pypi
12+
uses: JRubics/poetry-publish@v1.16
13+
with:
14+
pypi_token: ${{ secrets.PYPI_TOKEN }}
15+
python_version: "3.9.16"

0 commit comments

Comments
 (0)