From ca2217e45df2a06a4503417d1748dcf7500810bf Mon Sep 17 00:00:00 2001 From: Joe Doss Date: Tue, 23 Jul 2024 14:48:31 -0500 Subject: [PATCH] Fix conditional for uploading packages --- .goreleaser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index f080a2fd6..15458cbdb 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -183,7 +183,7 @@ publishers: ids: - packages cmd: ./scripts/package-upload.sh {{ abs .ArtifactPath }} {{ .Var.packageName }} {{ .Version }} {{ .Var.packageRelease }} - disable: "{{ if .IsNightly }}true{{ end }}" + disable: "{{ if .Prerelease }}true{{ end }}" snapshot: name_template: "{{ .Tag }}-next"