[brew] Daily release support and Casks#7152
Merged
danieljurek merged 24 commits intomainfrom Mar 16, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds Homebrew support for publishing/installing both stable azd and a new azd@daily channel, and wires CI/CD pipelines to generate and push the right Homebrew artifacts.
Changes:
- Introduces Homebrew formula and cask templates, including a new
azd@dailycask. - Updates signing/publishing pipelines to generate formula/cask artifacts and push them to
Azure/homebrew-azd. - Adds build-reason override handling to better route “daily” vs “stable” publishing behavior.
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| eng/templates/brew.formula.template | New formula template for stable azd installs. |
| eng/templates/brew.cask.template | New stable cask template for azd. |
| eng/templates/brew.cask.daily.template | New daily cask template for azd@daily. |
| eng/scripts/Set-CliVersionInBuild.ps1 | Adds build-reason logging for version tagging diagnostics. |
| eng/pipelines/templates/steps/set-cli-version-cd.yml | Passes build-reason override (if set) into versioning script. |
| eng/pipelines/templates/steps/publish-cli-brew.yml | Copies generated formula/cask files into the Homebrew tap repo and pushes changes. |
| eng/pipelines/templates/stages/sign.yml | Generates either stable formula+cask or daily cask based on build reason. |
| eng/pipelines/templates/stages/publish.yml | Publishes daily artifacts under a daily/archive/$(CLI_VERSION) path and adds a brew publish job for CD runs. |
| eng/pipelines/templates/stages/build-and-test.yml | Forces brew submission on CI builds by overriding metadata. |
| eng/pipelines/templates/jobs/build-cli.yml | Adjusts conditions around Go setup vs live-test execution. |
vhvb1989
approved these changes
Mar 16, 2026
Member
Author
|
/check-enforcer override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support for
azd@dailyusing casks. Enables formula and cask for plainazd. Casks are the accepted way to support installing binaries produced from upstream (as opposed to formulae).