File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7474 run : |
7575 pip install --upgrade build twine
7676 for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
77- sed -i -e "s/0.0.0- auto.0/1.2.3/" $file;
77+ sed -i -e "s/0.0.0+ auto.0/1.2.3/" $file;
7878 done;
7979 python -m build
8080 twine check dist/*
Original file line number Diff line number Diff line change 8282 TWINE_PASSWORD : ${{ secrets.pypi_password }}
8383 run : |
8484 for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
85- sed -i -e "s/0.0.0- auto.0/${{github.event.release.tag_name}}/" $file;
85+ sed -i -e "s/0.0.0+ auto.0/${{github.event.release.tag_name}}/" $file;
8686 done;
8787 python -m build
8888 twine upload dist/*
You can’t perform that action at this time.
0 commit comments