Skip to content

Commit dfbe38a

Browse files
chore: even more fix what rc version should be
1 parent aaf0646 commit dfbe38a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ jobs:
7474
return match ? parseInt(match[1], 10) : 0
7575
})
7676
const highestRc = Math.max(...rcNumbers)
77-
newVersion += `.rc.${highestRc + 1}`
77+
newVersion += `-rc.${highestRc + 1}`
7878
} else {
79-
newVersion += `.rc.0`
79+
newVersion += `-rc.0`
8080
}
8181
8282
core.setOutput('new_version', newVersion)

0 commit comments

Comments
 (0)