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"
}
}'
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"
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?