Skip to content
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

Update release-process to mention syncing tags #7668

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions documentation/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,13 @@ The release image is `mcr.microsoft.com/dotnet/monitor`. The tag list is https:/

1. Update the `AutoUpdateDockerBranches` variable to `refs/heads/main` in the [internal pipeline](https://dev.azure.com/dnceng/internal/_build?definitionId=954) to begin the consumption of nightly builds into dotnet-docker. Note this should not necessarily be done right after the release, but after the merge from main to nightly in the dotnet-docker repo (such as https://github.com/dotnet/dotnet-docker/pull/4741). Include additional branch references and semi-colon delimit each value e.g. `refs/heads/main;refs/heads/feature/9.x`.
1. Review and merge the automatically create `Register new release information` PR.
1. For each release, push its corresponding tag to the [internal repository](https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet-monitor).
1. For each release, push its corresponding tag to the `shipped/v<version>` branch in the [internal repository](https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet-monitor) e.g `v8.0.0-rc.1.23458.6 -> shipped/v8.0`. If done correctly, this should be a fast-forward merge.
```
```sh
git remote add internal https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet-monitor
git fetch --tags
git checkout v8.0.0-rc.1.23458.6
git push internal HEAD:shipped/v8.0
git push internal tag v8.0.0-rc.1.23458.6 # Push the tag
git push internal HEAD:shipped/v8.0 # Update the shipped branch
```
1. When necessary, update this document if its instructions were unclear or incorrect.