From d9baf7c7822d5c68cfe078a4965bd225b65a5afd Mon Sep 17 00:00:00 2001 From: Nathan Brahms Date: Wed, 5 Jun 2024 13:52:25 -0700 Subject: [PATCH] goreleaser: Fix yaml config (#31) The schema of this file was changed between goreleaser versions. Update schema so that releases work. --- .goreleaser.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 9bb0aa7..18feaeb 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,5 +1,6 @@ # Visit https://goreleaser.com for documentation on how to customize this # behavior. +# yaml-language-server: $schema=https://goreleaser.com/static/schema.json before: hooks: # this is just an example and not a requirement for provider building/publishing @@ -57,4 +58,4 @@ release: # If you want to manually examine the release before its live, uncomment this line: # draft: true changelog: - skip: true + disable: true