Skip to content

Commit

Permalink
🔧 chore(ci): fix version bump with dev timestamp
Browse files Browse the repository at this point in the history
- remove unnecessary dot in dev version generation
- ensure consistent version incrementing for developmental releases
  • Loading branch information
awwaawwa committed Jan 24, 2025
1 parent 8f6ca39 commit 0158837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: |
bumpver update --patch --tag=final &&
version=$(cat pyproject.toml | grep "version = " | head -n 1 | awk -F'"' '{print $2}') &&
bumpver update --set-version $version.dev.$(date +%s)
bumpver update --set-version $version.dev$(date +%s)
- name: Build package
run: "uv build"
Expand Down

0 comments on commit 0158837

Please sign in to comment.