Added signing credentials to the publish workflow
This commit is contained in:
parent
a415c9fd21
commit
402164c1e1
2 changed files with 5 additions and 3 deletions
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -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 }}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue