Skip to content

Commit

Permalink
Fix version strings in workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec Delaney committed Aug 17, 2022
1 parent 36a8712 commit cf7a726
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
pip install --upgrade build twine
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
sed -i -e "s/0.0.0-auto.0/1.2.3/" $file;
sed -i -e "s/0.0.0+auto.0/1.2.3/" $file;
done;
python -m build
twine check dist/*
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -82,7 +82,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.pypi_password }}
run: |
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
sed -i -e "s/0.0.0-auto.0/${{github.event.release.tag_name}}/" $file;
sed -i -e "s/0.0.0+auto.0/${{github.event.release.tag_name}}/" $file;
done;
python -m build
twine upload dist/*

0 comments on commit cf7a726

Please sign in to comment.