diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf78537..c3afec7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,3 +48,5 @@ jobs: env: ORG_GRADLE_PROJECT_pluginPortalApiKey: "${{ secrets.GRADLE_PLUGIN_PORTAL_KEY }}" ORG_GRADLE_PROJECT_pluginPortalApiSecret: "${{ secrets.GRADLE_PLUGIN_PORTAL_SECRET }}" + ORG_GRADLE_PROJECT_signingKey: "${{ secrets.SIGNING_KEY }}" + ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.SIGNING_PASSWORD }}" diff --git a/README.md b/README.md index 87cf74d..debf30a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-paper") version "2.1.0" + id("xyz.jpenilla.run-paper") version "2.2.0" } tasks { @@ -25,7 +25,7 @@ tasks { // Configure the Minecraft version for our task. // This is the only required configuration besides applying the plugin. // Your plugin's jar (or shadowJar if present) will be used automatically. - minecraftVersion("1.19.2") + minecraftVersion("1.20.1") } } ``` @@ -45,7 +45,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-velocity") version "2.1.0" + id("xyz.jpenilla.run-velocity") version "2.2.0" } tasks { @@ -53,7 +53,7 @@ tasks { // Configure the Velocity version for our task. // This is the only required configuration besides applying the plugin. // Your plugin's jar (or shadowJar if present) will be used automatically. - velocityVersion("3.1.2-SNAPSHOT") + velocityVersion("3.2.0-SNAPSHOT") } } ``` @@ -73,7 +73,7 @@ In `build.gradle.kts`: ```kotlin plugins { // Apply the plugin - id("xyz.jpenilla.run-waterfall") version "2.1.0" + id("xyz.jpenilla.run-waterfall") version "2.2.0" } tasks { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 8457514..eb1d19a 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -9,7 +9,7 @@ plugins { } group = "xyz.jpenilla" -version = "2.2.0-SNAPSHOT" +version = "2.2.0" description = "Gradle plugins adding run tasks for Minecraft server and proxy software" repositories { @@ -60,6 +60,7 @@ indra { } } } + signWithKeyFromProperties("signingKey", "signingPassword") } indraSpotlessLicenser {