From 7f82ec1f0959c48b07189b3c331ce4e9b6776dc9 Mon Sep 17 00:00:00 2001 From: Marc Campbell Date: Wed, 18 Dec 2019 17:45:13 +0000 Subject: [PATCH] Add snapshot release back --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index ae1e1db68..d13a8cfd9 100644 --- a/Makefile +++ b/Makefile @@ -106,6 +106,12 @@ release: export GITHUB_TOKEN = $(shell echo ${GITHUB_TOKEN_TROUBLESHOOT}) release: curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --config deploy/.goreleaser.yml +.PHONY: snapshot-release +snapshot-release: + curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --snapshot --config deploy/.goreleaser.snapshot.yml + docker push replicated/troubleshoot:alpha + docker push replicated/preflight:alpha + .PHONY: local-release local-release: curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --snapshot --config deploy/.goreleaser.local.yml