curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GITHUB_CREATE_RELEASE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "GITHUB_CREATE_RELEASE",
"parameters": {
"owner": "<string>",
"repo": "<string>",
"tag_name": "<string>",
"target_commitish": "<string>",
"body": "<string>",
"draft": "true",
"prerelease": "true",
"discussion_category_name": "<string>",
"generate_release_notes": "true"
}
}
'