1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-13 09:11:34 +02:00

fix(release-please): update github-release call to new function (#217)

This PR fixes the wrong call to createRelease now named as run.

Tests are also updated.
This commit is contained in:
Ivan Santos
2021-02-13 22:16:30 -06:00
committed by GitHub
parent c31be99833
commit efd1c77e85
2 changed files with 108 additions and 73 deletions

View File

@@ -39,7 +39,7 @@ async function main () {
releaseType,
defaultBranch
})
const releaseCreated = await gr.createRelease()
const releaseCreated = await gr.run()
if (releaseCreated) {
core.setOutput('release_created', true)
for (const key of Object.keys(releaseCreated)) {