Skip to content

Commit 328da0c

Browse files
authored
Create python-publish.yml
Add poetry publish GitHub Action to publish xso to PyPI
1 parent 3f642bf commit 328da0c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/python-publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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@v3
11+
- name: Build and publish to pypi
12+
uses: JRubics/[email protected]
13+
with:
14+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)