Skip to content

Commit

Permalink
πŸ› fix(ci): correct version bumping conditional
Browse files Browse the repository at this point in the history
- fix syntax in version bump step condition
- remove unnecessary whitespace in conditional check
  • Loading branch information
awwaawwa committed Jan 26, 2025
1 parent dea2ebf commit 8855ebd
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 @@ -59,7 +59,7 @@ jobs:
uv sync
- name: Bump version for developmental release
if: "! steps.check-version.outputs.tag"
if: ! steps.check-version.outputs.tag
run: |
version=$(bumpver update --patch --tag=final --dry 2>&1 | grep "New Version" | awk '{print $NF}') &&
bumpver update --set-version $version.dev$(date +%s)
Expand Down

0 comments on commit 8855ebd

Please sign in to comment.