v0.0.67: revert that stuff

This commit is contained in:
Edwin Sirko
2024-01-26 16:34:40 +00:00
committed by ddivad195
parent 7269b88cd7
commit 983c5e7554
3 changed files with 1 additions and 4 deletions
-2
View File
@@ -26,8 +26,6 @@ export async function run(): Promise<void> {
const releaseId: string = github.context.payload.release.id
const releaseTag: string = github.context.payload.release.tag_name
console.log(`Release ID and tag? ${releaseId}, ${releaseTag}`)
// Strip any leading 'v' from the tag in case the release format is e.g. 'v1.0.0' as recommended by GitHub docs
// https://docs.github.com/en/actions/creating-actions/releasing-and-maintaining-actions
const targetVersion = semver.parse(releaseTag.replace(/^v/, ''))