This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move argocd-notifications image to argoprojlabs docker repo
- Loading branch information
Alexander Matyushentsev
authored and
Alexander Matyushentsev
committed
Jan 13, 2020
1 parent
e0dd8b9
commit b37d17d
Showing
4 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
VERSION?=$(shell cat VERSION) | ||
IMAGE_TAG?=v$(VERSION) | ||
IMAGE_PREFIX?=argoprojlabs | ||
DOCKER_PUSH?=false | ||
|
||
.PHONY: test | ||
test: | ||
go test ./... -coverprofile=coverage.out | ||
go test ./... -coverprofile=coverage.out | ||
|
||
.PHONY: image | ||
image: | ||
docker build -t $(IMAGE_PREFIX)/argocd-notifications:$(IMAGE_TAG) . | ||
@if [ "$(DOCKER_PUSH)" = "true" ] ; then docker push $(IMAGE_PREFIX)/argocd-notifications:$(IMAGE_TAG) ; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters