Skip to content

Commit 58fc5e9

Browse files
committed
minor fixes
1 parent b437b6f commit 58fc5e9

2 files changed

Lines changed: 19 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ci_publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
18+
poetry version patch
19+
poetry publish --build

0 commit comments

Comments
 (0)