We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3eb8f commit d4845fbCopy full SHA for d4845fb
2 files changed
.github/workflows/build.yml
@@ -98,7 +98,7 @@ jobs:
98
git config user.email marcelotduarte@users.noreply.github.com
99
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
100
VERSION=$(uv version --short)
101
- if ($VERSION | grep -q "\.dev"); then
+ if ($VERSION | grep -q ".dev"); then
102
uv version --no-sync --bump dev=$SOURCE_DATE_EPOCH
103
else
104
uv version --no-sync --bump patch --bump dev=$SOURCE_DATE_EPOCH
Makefile
@@ -76,7 +76,7 @@ release:
76
.PHONY: release-dev
77
release-dev:
78
git checkout -B release main
79
- if (uv version --short | grep -q "\.dev"); then\
+ if (uv version --short | grep -q ".dev"); then\
80
uv version --bump dev;\
81
else\
82
uv version --bump patch --bump dev=0;\
0 commit comments