Skip to content

Commit 7fdac7d

Browse files
committed
fix(scala): release process
1 parent e168682 commit 7fdac7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci/codegen/spreadGeneration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async function spreadGeneration(): Promise<void> {
9999
// ruby tag is already pushed by `rake release`
100100
if (IS_RELEASE_COMMIT && lang !== 'ruby') {
101101
// Go needs a 'v' prefix for tags.
102-
const tagVersion = lang === 'go' ? `v${version}` : version;
102+
const tagVersion = lang === 'go' || lang === 'scala' ? `v${version}` : version;
103103

104104
console.log(`Processing release commit, creating new release tag ('${version}') for '${lang}' repository.`);
105105

0 commit comments

Comments
 (0)