Skip to content

Commit 49a0a45

Browse files
authored
Add steps to install dependencies and build package
1 parent 11084ae commit 49a0a45

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,15 @@ jobs:
9797
# name: python-package-distributions
9898
# path: dist/
9999

100+
- name: Installer
101+
run: |
102+
python -m pip install --upgrade pip
103+
pip install setuptools wheel twine
104+
105+
- name: Build libcrypto Package
106+
run: |
107+
python setup.py sdist bdist_wheel
108+
100109
- name: Publish package to PyPI
101110
env:
102111
TWINE_USERNAME: __token__

0 commit comments

Comments
 (0)