Added signing credentials to the publish workflow

This commit is contained in:
Erik C. Thauvin 2023-04-08 14:28:40 -07:00
parent a415c9fd21
commit 671af50999
2 changed files with 5 additions and 3 deletions

View file

@ -35,4 +35,6 @@ jobs:
-Drife2Username=${{ secrets.RIFE2_USERNAME }}
-Drife2Password=${{ secrets.RIFE2_PASSWORD }}
-DsonatypeUser=${{ secrets.SONATYPE_USER }}
-DsonatypePassword=${{ secrets.SONATYPE_PASSWORD }}
-DsonatypePassword=${{ secrets.SONATYPE_PASSWORD }}
-DsignKey=${{ secrets.SIGN_KEY }}
-DsignPassphrase=${{ secrets.SIGN_PASSPHRASE }}

View file

@ -48,8 +48,8 @@ public class TemplateRenderersBuild extends Project {
.scm(new PublishScm().connection("scm:git:https://github.com/rife2/rife2-template-renderers.git")
.developerConnection("scm:git:git@github.com:rife2/rife2-template-renderers.git")
.url("https://github.com/rife2/rife2-template-renderers"))
.signKey(property("SIGN_KEY"))
.signPassphrase(property("SIGN_PASSPHRASE")));
.signKey(property("signKey"))
.signPassphrase(property("signPassphrase")));
javaRelease = 17;
downloadSources = true;