File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -317,9 +317,12 @@ jobs:
317
317
env :
318
318
RELEASE_ID : ${{ steps.create_release.outputs.release_id }}
319
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 }}
320
323
run : |
321
324
gh release upload "$RELEASE_ID" \
322
325
--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 }
Original file line number Diff line number Diff line change
1
+ pytest
You can’t perform that action at this time.
0 commit comments