Skip to content

Commit 3d0260e

Browse files
committed
debug
1 parent 1770f66 commit 3d0260e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/create_draft_release.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,12 @@ jobs:
317317
env:
318318
RELEASE_ID: ${{ steps.create_release.outputs.release_id }}
319319
GH_TOKEN: ${{ github.token }}
320+
SDIST: ${{ needs.package_python3.outputs.sdist }}
321+
PYTHON3_WHEEL: ${{ needs.package_python3.outputs.wheel }}
322+
PYTHON2_WHEEL: ${{ needs.package_python2.outputs.wheel }}
320323
run: |
321324
gh release upload "$RELEASE_ID" \
322325
--repo ${{ github.repository }} \
323-
dist/${{ needs.package_python3.outputs.sdist }} \
324-
dist/${{ needs.package_python3.outputs.wheel }} \
325-
dist/${{ needs.package_python2.outputs.wheel }}
326+
dist/${SDIST} \
327+
dist/${PYTHON3_WHEEL} \
328+
dist/${PYTHON2_WHEEL}

test/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytest

0 commit comments

Comments
 (0)