We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72b946a commit ed8e91bCopy full SHA for ed8e91b
1 file changed
.github/workflows/release.yml
@@ -81,7 +81,7 @@ jobs:
81
TWINE_USERNAME: ${{ secrets.pypi_username }}
82
TWINE_PASSWORD: ${{ secrets.pypi_password }}
83
run: |
84
- for file in $(find -not -path "./.*" -not -path "./docs*" -name "*.py"); do
+ 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;
86
done;
87
python -m build
0 commit comments