diff --git a/.github/workflows/publish-snapshot-jdk17.yml b/.github/workflows/publish-snapshot-jdk17.yml index ae0121e..99a6f3e 100644 --- a/.github/workflows/publish-snapshot-jdk17.yml +++ b/.github/workflows/publish-snapshot-jdk17.yml @@ -1,9 +1,10 @@ # Trigger building on push event, and publishing snapshot package if in base repository name: Build and Publish snapshot package on: + workflow_dispatch: push: branches: - - develop-0.0.10 + - jdk17 paths-ignore: - '.github/**' - 'docs/**' diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 4b62621..d30c5a4 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -1,6 +1,6 @@ object Release { const val Group = "com.tencent.devops" - const val Version = "0.0.9-SNAPSHOT" + const val Version = "0.0.10-SNAPSHOT" } object Versions { diff --git a/devops-boot-sample/build.gradle.kts b/devops-boot-sample/build.gradle.kts index 65b6bae..88da748 100644 --- a/devops-boot-sample/build.gradle.kts +++ b/devops-boot-sample/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.tencent.devops.boot") version "0.0.9-SNAPSHOT" + id("com.tencent.devops.boot") version "0.0.10-SNAPSHOT" } allprojects {