Skip to content

Commit

Permalink
Bugfix for pushed tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Aug 23, 2024
1 parent 6a61358 commit 9aa91f2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "issue-ops-semver",
"description": "Semantically version GitHub repository tags",
"version": "2.2.0",
"version": "2.2.1",
"type": "module",
"author": "Nick Alteen <ncalteen@github.com>",
"homepage": "https://github.com/issue-ops/semver#readme",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function run() {
const ref: string = core.getInput('ref')
const useVersion: string = core.getInput('use-version')
const workspace: string = core.getInput('workspace')
const push: boolean = core.getInput('push') === 'true'
const push: boolean = core.getInput('push-tags') === 'true'

if (
(manifestPath === '' && useVersion === '') ||
Expand Down

0 comments on commit 9aa91f2

Please # to comment.