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 022d25f commit 3232858Copy full SHA for 3232858
BuildTasks/TfxInstaller/v5/TfxInstaller.ts
@@ -29,7 +29,7 @@ function findTfxExecutablePath(basePath: string): string | undefined {
29
}
30
31
try {
32
- const version = taskLib.getInput("version", true);
+ const version = taskLib.getInput("version", false) || "builtin";
33
const checkLatest = taskLib.getBoolInput("checkLatest", false) || false;
34
35
await getTfx(version, checkLatest);
BuildTasks/TfxInstaller/v5/task.json
@@ -30,7 +30,7 @@
"name": "version",
"type": "pickList",
"label": "Version",
- "defaultValue": "v0.x",
+ "defaultValue": "builtin",
"helpMarkDown": "Specify which `tfx-cli` version you want to use. Examples: `v0.9.x`, `>=v0.5.x`.",
"required": true,
36
"options": {
0 commit comments