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:
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 }
Original file line number Diff line number Diff line change 1+ pytest
You can’t perform that action at this time.
0 commit comments