Skip to content

Commit 3e90d17

Browse files
authored
Merge pull request #18 from home-assistant-libs/fix-builds-at-the-beginning-of-the-month
Make sure the generated version is Python safe
2 parents c0d2001 + 229f224 commit 3e90d17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
elif [[ "${version}" =~ (main|dev) ]]; then
2828
today="$(date --utc '+%Y-%m-%d')"
2929
midnight_timestamp="$(date --utc +%s --date=$today)"
30-
calver_date="$(date --utc --date=$today '+%Y.%-m.dev%d')"
30+
calver_date="$(date --utc --date=$today '+%Y.%-m.dev%-d')"
3131
commit_count="$(git rev-list --count --since=$midnight_timestamp HEAD)"
3232
commit_count="$(printf "%02d" ${commit_count})"
3333
version="${calver_date}${commit_count}"

0 commit comments

Comments
 (0)