We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b437b6f commit 58fc5e9Copy full SHA for 58fc5e9
2 files changed
.github/workflows/ci.yml
.github/workflows/ci_publish.yml
@@ -0,0 +1,19 @@
1
+name: Upload Python Package
2
+on: [ push ]
3
+jobs:
4
+ deploy:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v3
8
+ - name: Set up Python
9
+ uses: actions/setup-python@v3
10
+ with:
11
+ python-version: '3.8'
12
+ - name: Install dependencies
13
+ run: |
14
+ python -m pip install --upgrade pip
15
+ pip install poetry
16
+ - name: Build and Publish
17
18
+ poetry version patch
19
+ poetry publish --build
0 commit comments