We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf0646 commit dfbe38aCopy full SHA for dfbe38a
.github/workflows/publish.yml
@@ -74,9 +74,9 @@ jobs:
74
return match ? parseInt(match[1], 10) : 0
75
})
76
const highestRc = Math.max(...rcNumbers)
77
- newVersion += `.rc.${highestRc + 1}`
+ newVersion += `-rc.${highestRc + 1}`
78
} else {
79
- newVersion += `.rc.0`
+ newVersion += `-rc.0`
80
}
81
82
core.setOutput('new_version', newVersion)
0 commit comments