File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2727 - name : Checks if package is already on Pypi
2828 id : check-version
2929 run : |
30- if curl https://pypi.org/simple/taipy-${{ github.event.inputs.target_package }}} | grep -o ">taipy- ${{ github.event.inputs.target_package }}}-${{ github.event.inputs.version }}\.tar\.gz<"; then
30+ if curl https://pypi.org/simple/taipy-${{ github.event.inputs.target_package }}} | grep -o ">taipy_ ${{ github.event.inputs.target_package }}}-${{ github.event.inputs.version }}\.tar\.gz<"; then
3131 echo "exists=true" >> $GITHUB_OUTPUT
3232 else
3333 echo "exists=false" >> $GITHUB_OUTPUT
3737 if : steps.check-version.outputs.exists == 'false'
3838 run : |
3939 gh release download ${{ github.event.inputs.version }}-${{ github.event.inputs.target_package }} --dir dist
40+ for f in dist/taipy-*; do mv $f `echo $f|sed -e 's/-/_/'`; done
4041 env :
4142 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4243
You can’t perform that action at this time.
0 commit comments