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

Fix SNAPSHOT workflow to not have VERSION_QUALIFIER #3123

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .buildkite/publish/dra/publish-daily-release-artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ if [[ "${WORKFLOW:-}" != "staging" && "${WORKFLOW:-}" != "snapshot" ]]; then
exit 2
fi

# snapshot workflows do not use qualifiers
if [[ "${WORKFLOW:-}" == "snapshot" ]]; then
echo "overriding any local VERSION_QUALIFIER for SNAPSHOT workflow"
VERSION_QUALIFIER=""
fi

# Version. This is pulled from config/product_version.
if [[ "${VERSION:-}" == "" ]]; then
echo "ERROR: VERSION required!"
Expand Down
2 changes: 2 additions & 0 deletions docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ and add an Environment Variable for `VERSION_QUALIFIER` with the value of the pr

For example, to release 9.0.0-BC1, you would set `VERSION_QUALIFIER=BC1` for this build.

Note that the qualified artifacts will only show up in DRA "staging" but not "snapshot" reports.

### In-Between releases

Sometimes, we need to release Connectors independently of the Elastic unified-release.
Expand Down
Loading