Skip to content

Commit b310d4a

Browse files
author
Skylar Simoncelli
committed
fix: release notes
1 parent 387fc0b commit b310d4a

File tree

1 file changed

+24
-2
lines changed
  • .github/actions/release/create-draft-release

1 file changed

+24
-2
lines changed

.github/actions/release/create-draft-release/action.yml

+24-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,30 @@ runs:
8383
release_body+="- [x] Local environment\n"
8484
release_body+="- [ ] Staging preview environment\n"
8585
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+
88110
release_response=$(curl -s -X POST -H "Authorization: token ${{ env.GITHUB_TOKEN }}" \
89111
-d '{"tag_name": "'$tag'", "name": "'$release_name'", "body": "'"$release_body"'", "draft": true, "generate_release_notes": true, "prerelease": true}' \
90112
"https://api.github.com/repos/${{ github.repository }}/releases")

0 commit comments

Comments
 (0)