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 512f7f7 commit 56b4528Copy full SHA for 56b4528
.github/workflows/monthly-tag.yml
@@ -40,10 +40,8 @@ jobs:
40
41
- name: Create and push the tag
42
run: |
43
- # E.g. 1.0.0
44
- VERSION_BASE=$(cat VERSION | awk '{$1=$1};1')
45
- # E.g. 1.0.0.2407
46
- VERS=$VERSION_BASE.$(date +%y%m)
+ # CalVer, e.g. 2024.07.19
+ VERS=$(date +%Y.%m.%d)
47
git config --global user.name 'Monthly Tag bot'
48
git config --global user.email '[email protected]'
49
git tag "$VERS" -a -m "Monthly version $VERS"
0 commit comments