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 945ed87 commit cfba7a0Copy full SHA for cfba7a0
CHANCHLOG
CHANGELOG.md
@@ -0,0 +1,6 @@
1
+### Added
2
+
3
+- Cleanup: Add automatically tag image before push in Makefile
4
+- Cleanup: Fix usage in ReadMe
5
+- Cleanup: Fix error with CHANGELOG name file
6
+- CLeanup: Add release to Makefile
Makefile
@@ -51,3 +51,8 @@ tag:
51
.PHONY: push
52
push: tag
53
docker push $(DOCKER_IMAGE_NAME):$(TAG)
54
55
+.PHONY: release
56
+push:
57
+ docker tag $(DOCKER_IMAGE_NAME):$(TAG) $(DOCKER_IMAGE_NAME):latest
58
+ docker push $(DOCKER_IMAGE_NAME):latest
0 commit comments