From e11a1eb1cea052bb7dba52f452ddbed5bcdd5df0 Mon Sep 17 00:00:00 2001 From: nopeitsnothing Date: Sun, 24 May 2026 01:05:31 -0400 Subject: [PATCH] fix(release): sign using RSK instead Signed-off-by: nopeitsnothing --- docs/code/develop.md | 2 +- scripts/tag_release.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/code/develop.md b/docs/code/develop.md index 9731648..921c4fd 100644 --- a/docs/code/develop.md +++ b/docs/code/develop.md @@ -213,7 +213,7 @@ Releases are tagged manually by maintainers. The `tag_release.py` script handles ### Requirements -- Your GPG keyring must contain the release signing key (`9FA5436D0EE360985157382517ECA05F768DEDF6`) +- Your GPG keyring must contain the release signing key (`C302 3DBE A3FB 38C4 38BA 1EED CEC6 0AED E8B9 92A2`) - The working tree must be clean - You must be on the `main` branch - A `## [vX.Y.Z]` entry must exist in `docs/changelog/index.md` for the version you are tagging diff --git a/scripts/tag_release.py b/scripts/tag_release.py index 8ba255a..3147757 100644 --- a/scripts/tag_release.py +++ b/scripts/tag_release.py @@ -38,7 +38,7 @@ from pathlib import Path # Default release signing key fingerprint. # Maintainers with a different key can pass --key on the CLI. -DEFAULT_SIGNING_KEY = "9FA5436D0EE360985157382517ECA05F768DEDF6" +DEFAULT_SIGNING_KEY = "C3023DBEA3FB38C438BA1EEDCEC60AEDE8B992A2" CHANGELOG = Path(__file__).resolve().parent.parent / "docs" / "changelog" / "index.md"