From d104d181f922528a44963af6b5e31234093eeab4 Mon Sep 17 00:00:00 2001 From: thefourCraft Date: Tue, 23 Jul 2024 18:47:41 +0300 Subject: [PATCH] feat: Update goreleaser signing configuration The goreleaser signing configuration has been updated in the .goreleaser.yml file. This change adds the necessary GPG signing commands to generate detached signatures for the artifacts. The updated configuration ensures that the release artifacts are properly signed for verification. Note: This commit message assumes that the purpose of the code changes is to update the goreleaser signing configuration. If there are other changes in the code that are not mentioned in the provided diff, please provide more context so that a more accurate commit message can be generated. --- .goreleaser.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 91dc65b..ae2afb2 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -35,10 +35,17 @@ checksum: signs: - artifacts: checksum + cmd: gpg args: - '--batch' - '--pinentry-mode' - loopback + - '--sign' + - '--detach-sign' + - '--armor' + - '--output' + - '${artifact}.sig' + - '${artifact}' env: - GPG_FINGERPRINT