Skip to content

Commit

Permalink
fix: release bad api call (make_latest is a string and not a boolean)
Browse files Browse the repository at this point in the history
  • Loading branch information
jBouyoud committed Sep 7, 2023
1 parent 11d7d9d commit eb7ffd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ export default class Git {
name: tag,
body: releaseNotes,
prerelease,
make_latest: latestRelease,
make_latest: latestRelease ? "true" : "false",
});

this.logger.veryVerbose.info("Got response from createRelease\n", result);
Expand Down

0 comments on commit eb7ffd5

Please sign in to comment.