From d9d144e5639c6ed2b751c94ca3dc2aacd5b51739 Mon Sep 17 00:00:00 2001 From: nopeitsnothing Date: Sat, 27 Jun 2026 23:47:46 -0400 Subject: [PATCH] chore(build): adjust keyring path use the new relative path: pgp/anonymousplanet.asc Signed-off-by: nopeitsnothing --- .github/workflows/02-sign.yml | 2 +- scripts/archived/tag_release.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/02-sign.yml b/.github/workflows/02-sign.yml index dd8894b..ba8f81f 100644 --- a/.github/workflows/02-sign.yml +++ b/.github/workflows/02-sign.yml @@ -217,7 +217,7 @@ jobs: run: | sudo apt-get update -qq sudo apt-get install -y gnupg - gpg --import pgp/anonymousplanet-release.asc + gpg --import pgp/anonymousplanet.asc - name: šŸ Set up Python uses: actions/setup-python@v5 diff --git a/scripts/archived/tag_release.py b/scripts/archived/tag_release.py index 033e570..7296a47 100644 --- a/scripts/archived/tag_release.py +++ b/scripts/archived/tag_release.py @@ -377,7 +377,7 @@ def main() -> int: if not key: print("\nāœ— Could not resolve a signing key. Aborting.") print(" Import the release key with:") - print(" gpg --import pgp/anonymousplanet-release.asc") + print(" gpg --import pgp/anonymousplanet.asc") return 1 print(f" Resolved to: {key}")