File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -30211,7 +30211,10 @@ function getParameters() {
3021130211 'https://api.devicecloud.dev';
3021230212 const apiKey = core.getInput('api-key', { required: true });
3021330213 const name = core.getInput('name', { required: false }) || getInferredName();
30214- const workspaceFolder = core.getInput('workspace', { required: false });
30214+ // Support both 'flows' and 'workspace' inputs (flows takes precedence if both are provided)
30215+ const flowsInput = core.getInput('flows', { required: false });
30216+ const workspaceInput = core.getInput('workspace', { required: false });
30217+ const workspaceFolder = flowsInput || workspaceInput;
3021530218 const async = core.getInput('async', { required: false }) === 'true';
3021630219 const androidApiLevelString = core.getInput('android-api-level', {
3021730220 required: false,
You can’t perform that action at this time.
0 commit comments