Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
markelliot committed Sep 4, 2022
1 parent 25a7dd3 commit b7fa5fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async function run() {
core.warning("Skipping release because it has not been long enough between releases");
return;
}
const newTag = `${releaseComponents[1]}.${parseInt(releaseComponents[2]) + 1}.0}`;
const newTag = `${releaseComponents[1]}.${parseInt(releaseComponents[2]) + 1}.0`;
core.info(`Creating a new release ${newTag}`);
await octokit.rest.repos.createRelease({
...context.repo,
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function run(): Promise<void> {

const newTag = `${releaseComponents[1]}.${
parseInt(releaseComponents[2]) + 1
}.0}`;
}.0`;
core.info(`Creating a new release ${newTag}`);
await octokit.rest.repos.createRelease({
...context.repo,
Expand Down

0 comments on commit b7fa5fc

Please sign in to comment.