Skip to content

Commit

Permalink
Use short key IDs for PGP. (#202)
Browse files Browse the repository at this point in the history
* Use short key IDs for PGP.

* Fix syntax error.
  • Loading branch information
cjyar authored Aug 3, 2022
1 parent d6921b4 commit 64a86a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
wget -q ${ARTIFACT}
SHA256=$(sha256sum -b ironoxide-homebrew.tar.gz | awk '{print $1}')
echo "::set-output name=tag::${NAME}"
echo "::set-output name=pr_branch::ironoxide-swig-bindings-${NAME}
echo "::set-output name=pr_branch::ironoxide-swig-bindings-${NAME}"
echo "::set-output name=artifact::${ARTIFACT}"
echo "::set-output name=sha256::${SHA256}"
- name: Edit files for pending release
Expand Down
3 changes: 2 additions & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ android.enableJetifier=true
VERSION_NAME=0.14.7-SNAPSHOT

# GPG info for signing artifacts before uploading them.
signing.keyId=1F6210B39FA43559
# This key is the last 4 bytes of the key ID of the signing subkey.
signing.keyId=9FA43559
signing.secretKeyRingFile=/tmp/signing-key.gpg
signing.password=
3 changes: 2 additions & 1 deletion java/tests/publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ pomIncludeRepository := { _ => false }

useGpg := true

usePgpKeyHex("1F6210B39FA43559")
// This key is the last 4 bytes of the key ID of the signing subkey.
usePgpKeyHex("9FA43559")

pomExtra := (
<scm>
Expand Down

0 comments on commit 64a86a2

Please sign in to comment.