We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42cbc7d commit 469b69eCopy full SHA for 469b69e
.github/workflows/python-publish.yml
@@ -22,12 +22,12 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip
24
pip install setuptools wheel twine
25
+ python -m pip install -r requirements.txt # Install requirements.txt
26
- name: Build and publish
27
env:
28
TWINE_USERNAME: mvincig11
29
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
30
31
git fetch --all --tags
- python -m pip install -r requirements.txt # Install requirements.txt
32
python setup.py sdist bdist_wheel
33
twine upload dist/*
0 commit comments