Skip to content

Commit 1687b0d

Browse files
committed
update publishing script
1 parent 609615a commit 1687b0d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/pythonpublish.yml

+11
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,16 @@ jobs:
1616
steps:
1717
# retrieve your distributions here
1818
- uses: actions/checkout@v1
19+
- name: Set up Python
20+
uses: actions/setup-python@v1
21+
with:
22+
python-version: '3.x'
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install setuptools wheel twine
27+
- name: Build
28+
run: |
29+
python setup.py sdist bdist_wheel
1930
- name: Publish package distributions to PyPI
2031
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)