Added signing credentials to the publish workflow
This commit is contained in:
parent
a415c9fd21
commit
671af50999
2 changed files with 5 additions and 3 deletions
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -36,3 +36,5 @@ jobs:
|
||||||
-Drife2Password=${{ secrets.RIFE2_PASSWORD }}
|
-Drife2Password=${{ secrets.RIFE2_PASSWORD }}
|
||||||
-DsonatypeUser=${{ secrets.SONATYPE_USER }}
|
-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")
|
.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")
|
.developerConnection("scm:git:git@github.com:rife2/rife2-template-renderers.git")
|
||||||
.url("https://github.com/rife2/rife2-template-renderers"))
|
.url("https://github.com/rife2/rife2-template-renderers"))
|
||||||
.signKey(property("SIGN_KEY"))
|
.signKey(property("signKey"))
|
||||||
.signPassphrase(property("SIGN_PASSPHRASE")));
|
.signPassphrase(property("signPassphrase")));
|
||||||
|
|
||||||
javaRelease = 17;
|
javaRelease = 17;
|
||||||
downloadSources = true;
|
downloadSources = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue