We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1770f66 commit 3d0260eCopy full SHA for 3d0260e
2 files changed
.github/workflows/create_draft_release.yaml
@@ -317,9 +317,12 @@ jobs:
317
env:
318
RELEASE_ID: ${{ steps.create_release.outputs.release_id }}
319
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 }}
323
run: |
324
gh release upload "$RELEASE_ID" \
325
--repo ${{ github.repository }} \
- dist/${{ needs.package_python3.outputs.sdist }} \
- dist/${{ needs.package_python3.outputs.wheel }} \
- dist/${{ needs.package_python2.outputs.wheel }}
326
+ dist/${SDIST} \
327
+ dist/${PYTHON3_WHEEL} \
328
+ dist/${PYTHON2_WHEEL}
test/requirements.txt
@@ -0,0 +1 @@
1
+pytest
0 commit comments