File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 71
71
run : |
72
72
pip install --upgrade build twine
73
73
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
74
- sed -i -e "s/0.0.0- auto.0/1.2.3/" $file;
74
+ sed -i -e "s/0.0.0+ auto.0/1.2.3/" $file;
75
75
done;
76
76
python -m build
77
77
twine check dist/*
Original file line number Diff line number Diff line change 82
82
TWINE_PASSWORD : ${{ secrets.pypi_password }}
83
83
run : |
84
84
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;
86
86
done;
87
87
python -m build
88
88
twine upload dist/*
Original file line number Diff line number Diff line change 26
26
- name : Install locally
27
27
run : |
28
28
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
29
- sed -i -e "s/0.0.0- auto.0/1.2.3/" $file;
29
+ sed -i -e "s/0.0.0+ auto.0/1.2.3/" $file;
30
30
done;
31
31
pip install .
32
32
- name : Run tests
You can’t perform that action at this time.
0 commit comments