Conversation
Reinstates the v1.3-style release packaging: each GitHub release attaches a single fixed-name `LanguageTags.7z` bundling the compiled library (dll, pdb, deps.json, xml) plus the `.nupkg` and `.snupkg`, instead of the raw `.nupkg`/`.snupkg`. This gives external clients a deterministic `releases/latest/download/LanguageTags.7z` URL with no asset-list parsing. ## Changes (build-release-task.yml) - Build `OutputPath` and `PackageOutputPath` both to the `publish` dir (library + packages together). - New `Compress release asset step`: `7z a -t7z .../LanguageTags.7z .../publish/*` (publish-gated). `ubuntu-24.04` ships `p7zip-full`, so `7z` needs no install. - Upload + attach `LanguageTags.7z` (replacing `publish/*`). NuGet publishing is unchanged (the `.nupkg`/`.snupkg` still push to NuGet.org). WORKFLOW.md D4.4 / single-target seam / 5A-D4 updated to describe the 7z bundle. Verified end-to-end via a `workflow_dispatch` prerelease before promotion. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Promotes develop to main for a stable release while updating the release/promotion mechanics to ship a deterministic LanguageTags.7z asset and avoid deleting protected branches during promotions.
Changes:
- Update the release workflow to bundle build outputs and NuGet packages into a single fixed-name
LanguageTags.7zasset. - Disable repo-wide “delete branch on merge” and explicitly delete bot/feature branches via
gh pr merge --delete-branch. - Update workflow documentation to reflect the single
LanguageTags.7zrelease-asset contract.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
WORKFLOW.md |
Documents the new fixed-name LanguageTags.7z release asset and updates the operational guarantees/audit checklist accordingly. |
repo-config/settings.json |
Disables repo-wide auto-delete-on-merge to keep protected branches (e.g., promotions) from being deleted. |
repo-config/README.md |
Updates repo-config documentation to match the new branch-deletion approach (--delete-branch instead of global setting). |
.github/workflows/merge-bot-pull-request.yml |
Ensures bot PRs still clean up their head branches by passing --delete-branch. |
.github/workflows/build-release-task.yml |
Produces and publishes LanguageTags.7z as the single release asset, and uploads/downloads it across jobs. |
Defensive install of p7zip-full only when 7z is missing, so a future ubuntu-latest change can't break the release archive step (no-op on current runners, which ship p7zip-full). Addresses Copilot's recurring note on the compress step. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 29, 2026
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.
Promotes
developtomainfor a stable release (same 1.5 floor; NBGV advances the patch).Ships
LanguageTags.7zbundling the compiled library +.nupkg/.snupkg, giving a deterministicreleases/latest/download/LanguageTags.7zURL.--delete-branch.Verified on develop
The
1.5.4-g6c6ba047faprerelease attached a flatLanguageTags.7z(LanguageTags.dll/.pdb/.deps.json/.xml + ptr727.LanguageTags..nupkg/.snupkg, no subdirs), and the NuGet push succeeded.Merging publishes the stable release with the new 7z asset.
🤖 Generated with Claude Code