|
83 | 83 | release_body+="- [x] Local environment\n"
|
84 | 84 | release_body+="- [ ] Staging preview environment\n"
|
85 | 85 | release_body+="- [ ] Staging preprod environment\n\n"
|
86 |
| - release_body+="Please note: this release is not yet fully verified and is pending further testing.\n" |
87 |
| -
|
| 86 | + release_body+="Please note: this release is not yet fully verified and is pending further testing.\n\n" |
| 87 | + |
| 88 | + release_body+="## Compatibility matrix\n" |
| 89 | + release_body+="| partner-chains-node | partner-chains-smart-contracts | cardano-node | cardano-db-sync | kupo | ogmios |\n" |
| 90 | + release_body+="| -------------------- | -------------------------------- | --------------- | ------------------ | ----- | ------- |\n" |
| 91 | + release_body+="| $tag | | | | | |\n\n" |
| 92 | + |
| 93 | + release_body+="## Binaries\n\n" |
| 94 | + release_body+="You can download the archives that contain both \`partner-chains-node\` and \`partner-chains-cli\` from assets attached to this release (available for MacOS and Linux architectures). PC smart contracts CLI can be downloaded from [here](https://github.com/input-output-hk/partner-chains-smart-contracts).\n\n" |
| 95 | + |
| 96 | + release_body+="## Docker\n\n" |
| 97 | + release_body+="You can also pull the Docker image of the \`partner-chains-node\` from GitHub Container Registry:\n\n" |
| 98 | + release_body+="\`\`\`bash\n" |
| 99 | + release_body+="docker pull ghcr.io/input-output-hk/partner-chains/partner-chains-node:$tag\n" |
| 100 | + release_body+="\`\`\`\n\n" |
| 101 | + |
| 102 | + release_body+="## How to Use\n\n" |
| 103 | + release_body+="Refer to the [documentation](https://github.com/input-output-hk/partner-chains/tree/$tag/docs/user-guides) for detailed instructions on using the node and CLI tools.\n\n" |
| 104 | + |
| 105 | + release_body+="## Support\n\n" |
| 106 | + release_body+="You can visit our issues page for support, feature requests, or to report a bug.\n\n" |
| 107 | + |
| 108 | + release_body+="Thank you for being a part of our community!\n" |
| 109 | + |
88 | 110 | release_response=$(curl -s -X POST -H "Authorization: token ${{ env.GITHUB_TOKEN }}" \
|
89 | 111 | -d '{"tag_name": "'$tag'", "name": "'$release_name'", "body": "'"$release_body"'", "draft": true, "generate_release_notes": true, "prerelease": true}' \
|
90 | 112 | "https://api.github.com/repos/${{ github.repository }}/releases")
|
|
0 commit comments