Skip to content

Commit

Permalink
feat: Update goreleaser signing configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thefourcraft committed Jul 23, 2024
1 parent 41b71e7 commit d104d18
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d104d18

Please sign in to comment.