We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0842828 commit e11713bCopy full SHA for e11713b
src/main.ts
@@ -211,6 +211,10 @@ export async function run(): Promise<void> {
211
deployCmd.push('--labels', joinKVStringForGCloud(compiledLabels));
212
}
213
} else if (workerPool) {
214
+ logWarning(
215
+ `Support for Cloud Run worker pools in this GitHub Action is in beta and is ` +
216
+ `not covered by the semver backwards compatibility guarantee.`,
217
+ );
218
deployCmd = ['run', 'worker-pools', 'deploy', workerPool];
219
220
if (image) {
0 commit comments