Skip to content

Commit 2643106

Browse files
authored
fix: wheel dependency, status check (#603)
1 parent 72188fe commit 2643106

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pipeline-release-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
140140
# Possible values (from testing):
141141
# None, success, skipped, failure
142-
if conclusion_map.get("failure") > 0:
142+
if conclusion_map.get("failure", 0) > 0:
143143
print("Some checks not successful.")
144144
print(failures)
145145
sys.exit(1)
@@ -335,6 +335,6 @@ jobs:
335335
- run: |
336336
python3 -m pip install pip setuptools packaging poetry clikit --upgrade
337337
make dev-install
338-
pip install setuptools wheels twine
338+
pip install setuptools wheel twine
339339
python setup.py sdist bdist_wheel
340340
twine upload -u ${{ secrets.TWINE_USERNAME }} -p ${{ secrets.TWINE_PASSWORD }} dist/*

0 commit comments

Comments
 (0)