From be7beb9ecf19f43b378f453fef5750d4b4aa939b Mon Sep 17 00:00:00 2001 From: Ryan Liang <109499885+RyanL1997@users.noreply.github.com> Date: Fri, 6 Jan 2023 12:26:05 -0800 Subject: [PATCH] Add script for workflow version increment (#2374) * Add script for workflow version increment Signed-off-by: Ryan Liang --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index cd172d7ba3..31ca010a20 100644 --- a/build.gradle +++ b/build.gradle @@ -644,6 +644,7 @@ task updateVersion { fileset(dir: projectDir) { // Include the required files that needs to be updated with new Version include(name: "bwc-test/build.gradle") + include(name: ".github/workflows/plugin_install.yml") } } ant.replaceregexp(file:'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags:'g', byline:true)