We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72fb78d commit 1f9f098Copy full SHA for 1f9f098
.github/workflows/plugin_install.yml
@@ -3,7 +3,7 @@ name: Plugin Install
3
on: [push, pull_request, workflow_dispatch]
4
5
env:
6
- OPENSEARCH_VERSION: 3.0.0-beta1
+ OPENSEARCH_VERSION: 3.0.0
7
PLUGIN_NAME: opensearch-security
8
9
jobs:
build.gradle
@@ -18,7 +18,7 @@ buildscript {
18
ext {
19
opensearch_version = System.getProperty("opensearch.version", "3.0.0-SNAPSHOT")
20
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
21
- buildVersionQualifier = System.getProperty("build.version_qualifier", "beta1")
+ buildVersionQualifier = System.getProperty("build.version_qualifier", "")
22
23
// 2.0.0-rc1-SNAPSHOT -> 2.0.0.0-rc1-SNAPSHOT
24
version_tokens = opensearch_version.tokenize('-')
0 commit comments