summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdeploy.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index 83fa31a..d9773df 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -34,6 +34,7 @@ require_clean_work_tree () {
# MAIN METHOD #
## ##
DATE=$(date -u -Iseconds)
+DATE_TAG=$(date -u +%Y.%m.%dT%H.%M.%SZ)
echo "Checking git for clean work tree"
require_clean_work_tree
@@ -46,6 +47,6 @@ echo "Deployed!"
echo "Committing deploy"
git commit -am "Deployed: $DATE"
-git tag -a $DATE -m "Deployed to s3 on $DATE"
+git tag -a $DATE_TAG -m "Deployed to s3 on $DATE"
echo "Done!"