mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-07 16:04:02 +00:00
Less verbose "make retag" command
This commit is contained in:
parent
b05eed92d5
commit
93528d862f
4
Makefile
4
Makefile
@ -12,10 +12,10 @@ tag: ## Create a release, update the "latest" tag and push them to origin
|
|||||||
$(MAKE) retag TAG=latest
|
$(MAKE) retag TAG=latest
|
||||||
|
|
||||||
retag:
|
retag:
|
||||||
echo "=== Creating tag $(TAG)"
|
@echo "=== Creating tag $(TAG)"
|
||||||
git tag -d $(TAG) || true
|
git tag -d $(TAG) || true
|
||||||
git tag $(TAG)
|
git tag $(TAG)
|
||||||
echo "=== Pushing tag $(TAG)"
|
@echo "=== Pushing tag $(TAG)"
|
||||||
git push origin :$(TAG) || true
|
git push origin :$(TAG) || true
|
||||||
git push origin $(TAG)
|
git push origin $(TAG)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user