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 e168682 commit 7fdac7dCopy full SHA for 7fdac7d
scripts/ci/codegen/spreadGeneration.ts
@@ -99,7 +99,7 @@ async function spreadGeneration(): Promise<void> {
99
// ruby tag is already pushed by `rake release`
100
if (IS_RELEASE_COMMIT && lang !== 'ruby') {
101
// Go needs a 'v' prefix for tags.
102
- const tagVersion = lang === 'go' ? `v${version}` : version;
+ const tagVersion = lang === 'go' || lang === 'scala' ? `v${version}` : version;
103
104
console.log(`Processing release commit, creating new release tag ('${version}') for '${lang}' repository.`);
105
0 commit comments