Skip to content

Commit

Permalink
fix dra snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
moukoublen committed Jan 17, 2025
1 parent 00bb62b commit 725e106
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ agents:
image: "family/platform-ingest-beats-ubuntu-2204"

steps:
# TODO remove || build.env('VERSION_QUALIFIER') == null
# TODO remove && build.env('VERSION_QUALIFIER') == null
- label: ":package: Package Cloudbeat - Snapshot"
if: build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env("RUN_RELEASE") == "true" || build.env('VERSION_QUALIFIER') == null
if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env("RUN_RELEASE") == "true") && build.env('VERSION_QUALIFIER') == null
env:
WORKFLOW: "snapshot"
key: "package-snapshot"
command: "./.buildkite/scripts/package.sh"
artifact_paths: "build/distributions/*"

# TODO remove || build.env('VERSION_QUALIFIER') == null
# TODO remove && build.env('VERSION_QUALIFIER') == null
- label: ":rocket: Publishing Snapshot DRA artifacts"
if: build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env("RUN_RELEASE") == "true" || build.env('VERSION_QUALIFIER') == null
if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/ || build.env("RUN_RELEASE") == "true") && build.env('VERSION_QUALIFIER') == null
depends_on: "package-snapshot"
command: "./.buildkite/scripts/publish.sh"
env:
Expand Down

0 comments on commit 725e106

Please sign in to comment.