Skip to content

Commit

Permalink
Improve release related content (#2743)
Browse files Browse the repository at this point in the history
* add Moonkit to the diff in the release page body

* fix docker image tag in client release issu body
  • Loading branch information
noandrea committed Apr 10, 2024
1 parent 2774afc commit 7433cd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions tools/github/generate-release-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ async function main() {

const previousTag = argv.from;
const newTag = argv.to;

// TODO: this section should be optional with default to ["polkadot-sdk", "frontier"]
const moduleLinks = ["polkadot-sdk", "frontier"].map((repoName) => ({
const moduleLinks = ["polkadot-sdk", "frontier", "moonkit"].map((repoName) => ({
name: repoName,
link: getCompareLink(repoName, previousTag, newTag),
}));
Expand Down
2 changes: 1 addition & 1 deletion tools/github/generate-runtimes-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async function main() {
getRuntimeInfo(argv["srtool-report-folder"], runtimeName)
);

const moduleLinks = ["polkadot-sdk", "frontier"].map((repoName) => ({
const moduleLinks = ["polkadot-sdk", "frontier", "moonkit"].map((repoName) => ({
name: repoName,
link: getCompareLink(repoName, previousTag, newTag),
}));
Expand Down
8 changes: 4 additions & 4 deletions tools/github/print-client-release-issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ async function main() {
`-f from=runtime-${previousVersion} -f to=runtime-${newVersion}\`
- [ ] Review the generated Draft and clean a bit the messages if needed (keep it draft).
- [ ] Update moonbeam-networks stagenet (moonsama/moonlama) config.json to include:
- \`\`\`
\`\`\`
"binaries": [
{
"docker": "docker.io/moonbeamfoundation/moonbeam:${newVersion}-rc",
"docker": "moonbeamfoundation/moonbeam:v${newVersion}-rc",
"path": "/moonbeam/moonbeam",
"name": "moonbeam"
},
{
"docker": "docker.io/moonbeamfoundation/moonbeam:${newVersion}-rc",
"docker": "moonbeamfoundation/moonbeam:v${newVersion}-rc",
"path": "/moonbeam/moonbeam-skylake",
"name": "moonbeam-skylake"
}
]
\`\`\`
\`\`\`
(matching your ${newVersion} tag) and increase the config version + 1.
- [ ] Test the new client on stagenet (moonsama/moonlama).
- [ ] Publish the client release draft.
Expand Down

0 comments on commit 7433cd4

Please sign in to comment.