Skip to content

Commit 8031d39

Browse files
committed
Fix a bug with curl command
1 parent a3dfed4 commit 8031d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async function getRelease(releaseId) {
7171
if (!githubToken) {
7272
const url = `${apiReleases}/${releaseId}`;
7373
core.debug(`URL: ${url}`);
74-
const release = await execute(url);
74+
const release = await curl(url);
7575
return JSON.parse(release.stdOut);
7676
}
7777
const octokit = github.getOctokit(githubToken);

0 commit comments

Comments
 (0)