fix: disable publish for services (#485)

This commit is contained in:
Paul Makles
2026-01-10 13:06:33 +00:00
committed by GitHub
parent 58fb269450
commit d13609c372
10 changed files with 8 additions and 35 deletions

View File

@@ -1,14 +0,0 @@
#!/usr/bin/env bash
date=$(date +'%Y%m%d')
incr=1
while [ $(git tag -l "$date-$incr") ]; do
incr=$((incr+1))
done
tag=$date-$incr
echo About to tag and push $tag in 3 seconds...
sleep 3s
git tag $tag
git push --atomic origin $(git rev-parse --abbrev-ref HEAD) $tag