Skip to content

Commit

Permalink
Fix release process to use the old RSA key
Browse files Browse the repository at this point in the history
* Hashicorp does not support ed25519 signing keys
  • Loading branch information
dghubble committed May 27, 2024
1 parent da3d466 commit 82682d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ _output/%/terraform-provider-cue:

release-sign:
cd _output; sha256sum *.zip > terraform-provider-cue_$(SEMVER)_SHA256SUMS
gpg2 --detach-sign _output/terraform-provider-cue_$(SEMVER)_SHA256SUMS
gpg --default-key 0x8F515AD1602065C8 --detach-sign _output/terraform-provider-cue_$(SEMVER)_SHA256SUMS

release-verify: NAME=_output/terraform-provider-cue
release-verify:
gpg2 --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS
gpg --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS

0 comments on commit 82682d3

Please sign in to comment.