mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-08 15:30:05 +00:00
fix: add back in working dir (#971)
This commit is contained in:
parent
5bf250470e
commit
b4dfea724f
5 changed files with 14 additions and 1 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
|
@ -22120,6 +22120,7 @@ const buildExec = () => {
|
|||
const upstream = core.getInput('upstream_proxy');
|
||||
const url = core.getInput('url');
|
||||
const verbose = isTrue(core.getInput('verbose'));
|
||||
const workingDir = core.getInput('working-directory');
|
||||
const xcode = core.getInput('xcode');
|
||||
const xcodeArchivePath = core.getInput('xcode_archive_path');
|
||||
const xtraArgs = core.getInput('xtra_args');
|
||||
|
|
@ -22259,6 +22260,9 @@ const buildExec = () => {
|
|||
if (verbose) {
|
||||
console.debug({ execArgs });
|
||||
}
|
||||
if (workingDir) {
|
||||
options.cwd = workingDir;
|
||||
}
|
||||
if (xtraArgs) {
|
||||
execArgs.push(`${xtraArgs}`);
|
||||
}
|
||||
|
|
|
|||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue