Skip to content

Commit 0e90d8c

Browse files
authored
Fixed workflow (#39)
* Added publishing workflow, bump version * Added beta prefix * Updated redis version * Updated package name * Updated branch name * Updated dependency and README * Fixed workflow
1 parent d20bf2a commit 0e90d8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pypi_publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Publish tag to Pypi
33
on:
44
release:
55
types: [published]
6+
workflow_dispatch:
67

78
permissions:
89
contents: read # to fetch code (actions/checkout)
@@ -20,12 +21,11 @@ jobs:
2021
- name: Install dev tools
2122
run: |
2223
pip install -r dev_requirements.txt
23-
pip install twine wheel
24+
pip install twine wheel build
2425
2526
- name: Build package
2627
run: |
27-
python setup.py build
28-
python setup.py sdist bdist_wheel
28+
python -m build
2929
3030
- name: Basic package test prior to upload
3131
run: |

0 commit comments

Comments
 (0)