Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
cstub committed Jan 14, 2025
1 parent cbf7259 commit f8abc14
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
- name: Build package
run: |
poetry build
# Rename files to remove local identifier
for f in dist/*; do
new_name=$(echo "$f" | sed 's/\(.*\)+[^-]*\(-py3.*\.whl\|\.tar\.gz\)/\1\2/')
mv "$f" "$new_name"
done
ls -la dist/
- name: Upload distributions
Expand Down

0 comments on commit f8abc14

Please sign in to comment.