We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05b19a4 commit aece1f5Copy full SHA for aece1f5
1 file changed
.github/workflows/test-pypi-publish.yml
@@ -21,7 +21,14 @@ jobs:
21
uses: actions/setup-python@v2
22
with:
23
python-version: ${{ matrix.python-version }}
24
-
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28
+ - name: Package
29
30
+ python setup.py sdist
31
+ python setup.py bdist_wheel
32
- name: Publish 📦 to Test PyPI
33
uses: pypa/gh-action-pypi-publish@master
34
0 commit comments