mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-07 23:10:05 +00:00
feat: add xcode support
This commit is contained in:
parent
6a6a9ae7b1
commit
a03184e530
12 changed files with 54 additions and 12 deletions
8
dist/index.js
vendored
8
dist/index.js
vendored
|
|
@ -19346,7 +19346,7 @@ var core = __nccwpck_require__(2186);
|
|||
// EXTERNAL MODULE: ./node_modules/@actions/github/lib/github.js
|
||||
var github = __nccwpck_require__(5438);
|
||||
;// CONCATENATED MODULE: ./package.json
|
||||
const package_namespaceObject = {"i8":"3.0.0"};
|
||||
const package_namespaceObject = {"i8":"3.1.0"};
|
||||
;// CONCATENATED MODULE: ./src/buildExec.ts
|
||||
|
||||
|
||||
|
|
@ -19389,6 +19389,8 @@ const buildExec = () => {
|
|||
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 execArgs = [];
|
||||
execArgs.push('-n', `${name}`, '-Q', `github-action-${package_namespaceObject.i8}`);
|
||||
const options = {};
|
||||
|
|
@ -19496,6 +19498,10 @@ const buildExec = () => {
|
|||
if (workingDir) {
|
||||
options.cwd = workingDir;
|
||||
}
|
||||
if (xcode && xcodeArchivePath) {
|
||||
execArgs.push('--xc');
|
||||
execArgs.push('--xp', `${xcodeArchivePath}`);
|
||||
}
|
||||
if (uploaderVersion == '') {
|
||||
uploaderVersion = 'latest';
|
||||
}
|
||||
|
|
|
|||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/sourcemap-register.js
vendored
2
dist/sourcemap-register.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue