Skip to content

Commit 15bb8af

Browse files
bschnurrCopilot
andauthored
Enable publishExtension in stable release pipeline (#1012)
* Enable publishExtension in stable release pipeline Set publishExtension parameter default to true so stable releases publish the extension automatically. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Add release verification step to release agent Update release.agent.md to verify the new version appears on the GitHub releases page after publishing. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Add release verification step to release agent Update release.agent.md to verify the new version appears on the GitHub releases page after publishing. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 260fe4c commit 15bb8af

2 files changed

Lines changed: 21 additions & 8 deletions

File tree

β€Ž.github/agents/release.agent.mdβ€Ž

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,23 @@ When the pipeline completes signing, it will pause for manual validation before
126126
127127
---
128128
129-
## Done
130-
131-
Once the pipeline has published successfully:
132-
- A GitHub release will be created at the release tag (e.g. `v2026.4.0` β€” *example*)
133-
- The extension will be live on the marketplace as a stable release
134-
135-
Congratulations on the release! πŸŽ‰
129+
## Done
130+
131+
Once the pipeline has published successfully, verify the release:
132+
133+
1. **Check GitHub Releases** β€” confirm the new version appears on the releases page:
134+
```
135+
gh release list --repo microsoft/vscode-python-debugger --limit 5
136+
```
137+
Or visit: https://github.com/microsoft/vscode-python-debugger/releases
138+
139+
2. **Verify the release tag** matches the expected version (e.g. `v2026.4.0` β€” *example*):
140+
```
141+
gh release view v<VERSION> --repo microsoft/vscode-python-debugger
142+
```
143+
144+
> βœ‹ **Confirm**: Does the new version appear on the [releases page](https://github.com/microsoft/vscode-python-debugger/releases)?
145+
146+
- The extension should now be live on the VS Code Marketplace as a stable release.
147+
148+
Congratulations on the release! πŸŽ‰

β€Žbuild/azure-devdiv-pipeline.stable.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ parameters:
2828
- name: publishExtension
2929
displayName: πŸš€ Publish Extension
3030
type: boolean
31-
default: false
31+
default: true
3232

3333
- name: buildPlatforms
3434
type: object

0 commit comments

Comments
Β (0)