Skip to content

Commit cfba7a0

Browse files
committed
Fix error with CHANGELOG name file && Add release to Makefile
Signed-off-by: Zemtsov Vladimir <[email protected]>
1 parent 945ed87 commit cfba7a0

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANCHLOG

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,8 @@ tag:
5151
.PHONY: push
5252
push: tag
5353
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

Comments
 (0)