mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-08 11:38:56 +00:00
5 lines
200 B
Bash
Executable File
5 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
# This script creates a tag for a release, based on the current commit
|
|
TAG_NAME=${TAG_NAME:-$(git -c "core.abbrev=8" show -s "--format=%cd-%h" "--date=format:%Y.%m.%d")}
|
|
git tag $TAG_NAME
|