Skip to content

Commit c8bede8

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 28fa56e + 2ae98d2 commit c8bede8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)