Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add build.yml workflow #28

Merged
merged 11 commits into from
Aug 28, 2024
Prev Previous commit
Next Next commit
Fix unspecified version bug
  • Loading branch information
AlexRuiz7 committed Aug 16, 2024
commit 2ed6e95c644a74072a0061881d3feef087bd17fd
4 changes: 2 additions & 2 deletions plugins/wazuh-indexer-setup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ validateNebulaPom.enabled = false
buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "2.14.0")
version = System.getProperty("version", "5.0.0")
wazuh_version = System.getProperty("version", "5.0.0")
revision = System.getProperty("revision", "0")
}

Expand All @@ -81,7 +81,7 @@ buildscript {

allprojects {
group = 'org.wazuh'
version = "${version}" + ".${revision}"
version = "${wazuh_version}" + ".${revision}"
}

repositories {
Expand Down