We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609615a commit 1687b0dCopy full SHA for 1687b0d
.github/workflows/pythonpublish.yml
@@ -16,5 +16,16 @@ jobs:
16
steps:
17
# retrieve your distributions here
18
- 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
29
+ python setup.py sdist bdist_wheel
30
- name: Publish package distributions to PyPI
31
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments