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

Improve release related content #2743

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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