Skip to content

Commit e7a3d64

Browse files
Update docs to sync tags (#7668)
1 parent 1efe5c1 commit e7a3d64

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

documentation/release-process.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,13 @@ The release image is `mcr.microsoft.com/dotnet/monitor`. The tag list is https:/
132132

133133
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`.
134134
1. Review and merge the automatically create `Register new release information` PR.
135+
1. For each release, push its corresponding tag to the [internal repository](https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet-monitor).
135136
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.
136-
```
137+
```sh
137138
git remote add internal https://dev.azure.com/dnceng/internal/_git/dotnet-dotnet-monitor
138139
git fetch --tags
139140
git checkout v8.0.0-rc.1.23458.6
140-
git push internal HEAD:shipped/v8.0
141+
git push internal tag v8.0.0-rc.1.23458.6 # Push the tag
142+
git push internal HEAD:shipped/v8.0 # Update the shipped branch
141143
```
142144
1. When necessary, update this document if its instructions were unclear or incorrect.

0 commit comments

Comments
 (0)