From 1da061d20d91d451c9129eb9cba4e9c842a9ca00 Mon Sep 17 00:00:00 2001 From: jdesouza Date: Wed, 18 Sep 2024 10:42:20 -0300 Subject: [PATCH] Fixing issue --- scripts/goreleaser.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/goreleaser.sh b/scripts/goreleaser.sh index 0d03fb1b7..09b96fbb1 100755 --- a/scripts/goreleaser.sh +++ b/scripts/goreleaser.sh @@ -55,7 +55,7 @@ echo "${this_script} using git tag ${GORELEASER_CURRENT_TAG}" # Only substitute specific variables, as goreleaser uses shell variable syntax # for its `signs` section `signature` and `artifact` variables. cat .goreleaser.yml.envsubst |envsubst '${skip_release} ${skip_feature_docker_tags} ${feature_docker_tag}' >.goreleaser.yml -goreleaser --skip=sign $@ +goreleaser --snapshot --skip=sign $@ if [ $? -eq 0 ] ; then echo "${this_script} removing the temporary .goreleaser.yml since goreleaser was successful" rm .goreleaser.yml # Keep git clean for additional goreleaser runs