We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b739e commit 42cbc7dCopy full SHA for 42cbc7d
.github/workflows/python-publish.yml
@@ -15,7 +15,7 @@ jobs:
15
steps:
16
- uses: actions/checkout@v3
17
- name: Set up Python
18
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v2
19
with:
20
python-version: '3.x'
21
- name: Install dependencies
@@ -28,5 +28,6 @@ jobs:
28
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
29
run: |
30
git fetch --all --tags
31
+ python -m pip install -r requirements.txt # Install requirements.txt
32
python setup.py sdist bdist_wheel
33
twine upload dist/*
0 commit comments