-
Notifications
You must be signed in to change notification settings - Fork 612
feat(packages): add package publish annotation support #16549
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
base: tomls/base/main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,71 @@ | ||||||||
| # | ||||||||
| # packages-demo.toml — Example of packages.toml with a small subset of packages. | ||||||||
| # | ||||||||
| # This file demonstrates how azldev splits binary packages across publish | ||||||||
| # repositories using package groups. Each [package-groups.<name>] section | ||||||||
| # assigns a set of packages to a publish channel. | ||||||||
|
|
||||||||
| # The real packages.toml will be added in the future. | ||||||||
| # | ||||||||
| # Package publish configuration | ||||||||
| # | ||||||||
|
|
||||||||
| # Project-wide baseline — unpublished unless overridden by a package group | ||||||||
|
||||||||
| # Project-wide baseline — unpublished unless overridden by a package group | |
| # Project-wide baseline — unpublished unless overridden by a package group | |
| # or by more specific component/per-package publish settings. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |||||
| # Base project | ||||||
| # | ||||||
|
|
||||||
| includes = ["comps/components.toml", "images/images.toml"] | ||||||
| includes = ["comps/components.toml", "images/images.toml", "packages-demo.toml"] | ||||||
|
||||||
| includes = ["comps/components.toml", "images/images.toml", "packages-demo.toml"] | |
| includes = ["comps/components.toml", "images/images.toml"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The header comments describe this as an example/small subset and say "The real packages.toml will be added in the future", but the file is now included by default via
base/project.toml. That makes it effectively production config; consider renaming it topackages.toml(and treating it as authoritative) or updating the comments to clearly state it is intentionally active and what scope it is expected to cover.