Skip to content

Commit

Permalink
no ref yet, use latest
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter committed Dec 15, 2023
1 parent 267c6e2 commit 0126b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const argsConfig = {
options: {
"skip-download": { type: 'boolean' },
"skip-login": { type: 'boolean' },
"cli-channel": { type: 'string', default: 'stable' },
"cli-channel": { type: 'string', default: 'latest' },
},
};
const uuidRegex = /^[\dabcdef\-]+$/;
Expand Down Expand Up @@ -104,7 +104,7 @@ function parseBuildId(stdout) {
version: inputs.version || '',
}
console.log('I will run with', config);
const startArgs = ['module', 'build', 'start', '--version', config.version, '--ref', config.ref];
const startArgs = ['module', 'build', 'start', '--version', config.version]; // , '--ref', config.ref];
const spawnRet = spawnSync(cliPath, startArgs);
checkSpawnSync(spawnRet);
const buildId = parseBuildId(spawnRet.stdout);
Expand Down

0 comments on commit 0126b76

Please sign in to comment.