forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.post-release-msg
27 lines (18 loc) · 1.03 KB
/
.post-release-msg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
1. Wait until the publish job is finished and the artifacts are up in the Maven Central.
- Publish job: https://github.com/line/armeria/actions/workflows/publish-release.yml
- Sonatype repository: https://oss.sonatype.org/
- Maven Central: https://repo.maven.apache.org/maven2/com/linecorp/armeria/armeria-bom/${releaseVersion}/
- Site job: https://github.com/line/armeria/actions/workflows/publish-site.yml
2. Close the milestone and set its due date with the date of the release at:
https://github.com/line/armeria/milestones
3. Update the release note at:
https://github.com/line/armeria/releases/tag/${tag}
4. Copy the examples to armeria-examples using the script:
cd ../armeria-examples && \
./update-examples.sh ${releaseVersion} ../upstream-armeria && \
git add -A . && \
git commit -m 'Update Armeria to ${releaseVersion}' && \
git push
5. Announce the release via Twitter.
6. Send an update pull request to https://github.com/TechEmpower/FrameworkBenchmarks
if we made performance improvements.