We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4117f8e commit 9886ec3Copy full SHA for 9886ec3
.github/workflows/release.yml
@@ -19,6 +19,7 @@ jobs:
19
- uses: sbt/setup-sbt@v1
20
- run: sbt ci-release
21
env:
22
+ PGP_ID: ${{ secrets.PGP_ID }}
23
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
24
PGP_SECRET: ${{ secrets.PGP_SECRET }}
25
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
build.sbt
@@ -24,7 +24,7 @@ lazy val commonSettings = Seq(
Credentials(
"GnuPG Key ID",
26
"gpg",
27
- System.getenv("PGP_SECRET"), // key identifier
+ System.getenv("PGP_ID"), // key identifier
28
"ignored" // this field is ignored; passwords are supplied by pinentry
29
),
30
0 commit comments