Skip to content

Commit

Permalink
correct branch in publishing pipeline (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
pzl authored Aug 23, 2024
1 parent 23cd612 commit f04e628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/sign_and_publish.yml.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main():
# This only gets triggered when the branch is either main or 7.\d or 8.\d
# So, dry_run is true for non main branch
branch = os.getenv("BUILDKITE_BRANCH")
dry_run = branch != "main"
dry_run = branch != "8.15"
pipeline = {}
steps = [
{
Expand Down

0 comments on commit f04e628

Please sign in to comment.