Added RIFE2 repo credentials to the publish workflow
This commit is contained in:
parent
7cc5b36568
commit
e29d4ee1c7
3 changed files with 5 additions and 5 deletions
2
.github/workflows/bld.yml
vendored
2
.github/workflows/bld.yml
vendored
|
@ -33,3 +33,5 @@ jobs:
|
||||||
./bld compile test
|
./bld compile test
|
||||||
-DtestsBadgeUrl=https://rife2.com/tests-badge/update/com.uwyn.rife2/rife2-renderers
|
-DtestsBadgeUrl=https://rife2.com/tests-badge/update/com.uwyn.rife2/rife2-renderers
|
||||||
-DtestsBadgeApiKey=${{ secrets.TESTS_BADGE_API_KEY }}
|
-DtestsBadgeApiKey=${{ secrets.TESTS_BADGE_API_KEY }}
|
||||||
|
-Drife2Username=${{ secrets.RIFE2_USERNAME }}
|
||||||
|
-Drife2Password=${{ secrets.RIFE2_PASSWORD }}
|
|
@ -1,6 +1,6 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.extension-tests=com.uwyn.rife2:bld-tests-badge:1.0.0
|
bld.extension-tests=com.uwyn.rife2:bld-tests-badge:1.1.0
|
||||||
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
|
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
|
||||||
rife2.downloadLocation=
|
rife2.downloadLocation=
|
||||||
rife2.version=1.5.18
|
rife2.version=1.5.18
|
|
@ -28,7 +28,7 @@ public class TemplateRenderersBuild extends Project {
|
||||||
|
|
||||||
publishOperation()
|
publishOperation()
|
||||||
.repository(version.isSnapshot() ? repository("https://repo.rife2.com/snapshots")
|
.repository(version.isSnapshot() ? repository("https://repo.rife2.com/snapshots")
|
||||||
.withCredentials(property("RIFE2_USERNAME"), property("RIFE2_PASSWORD"))
|
.withCredentials(property("rife2Username"), property("rife2Password"))
|
||||||
: repository("https://repo.rife2.com/releases")
|
: repository("https://repo.rife2.com/releases")
|
||||||
.withCredentials(property("RIFE2_USERNAME"), property("RIFE2_PASSWORD")))
|
.withCredentials(property("RIFE2_USERNAME"), property("RIFE2_PASSWORD")))
|
||||||
.repository(MAVEN_CENTRAL)
|
.repository(MAVEN_CENTRAL)
|
||||||
|
@ -57,8 +57,6 @@ public class TemplateRenderersBuild extends Project {
|
||||||
|
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("com.uwyn.rife2", "rife2", version(1, 5, 18)));
|
.include(dependency("com.uwyn.rife2", "rife2", version(1, 5, 18)));
|
||||||
scope(runtime)
|
|
||||||
.include(dependency("com.uwyn.rife2", "rife2", version(1, 5, 17), "agent"));
|
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2)))
|
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 9, 2)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2)))
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 9, 2)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue