Skip to content

Commit 672a131

Browse files
committed
Add github piblishing
1 parent 64c98ff commit 672a131

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish Python Package
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
7+
jobs:
8+
build-and-publish:
9+
runs-on: ubuntu-20.04
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v3
13+
- name: Publish to PyPI
14+
uses: JRubics/[email protected]
15+
with:
16+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)