mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 16:16:24 +00:00
Update changelog
This commit is contained in:
@@ -1,10 +1,10 @@
|
|||||||
### 1.2.0
|
### 1.2.0
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
- #185 [Placeholder]
|
- #193 Add all the bash params
|
||||||
|
|
||||||
#### Fixes
|
#### Fixes
|
||||||
- #185 [Placeholder]
|
- #193 Fixes issue with working-directory
|
||||||
|
|
||||||
### 1.1.1
|
### 1.1.1
|
||||||
|
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ Codecov's Action currently supports five inputs from the user: `token`, `file`,
|
|||||||
| `path_to_write_report` | Write upload file to path before uploading | Optional
|
| `path_to_write_report` | Write upload file to path before uploading | Optional
|
||||||
| `root_dir` | Used when not in git/hg project to identify project root directory | Optional
|
| `root_dir` | Used when not in git/hg project to identify project root directory | Optional
|
||||||
| `verbose` | Specify whether the Codecov output should be verbose | Optional
|
| `verbose` | Specify whether the Codecov output should be verbose | Optional
|
||||||
| `working_directory` | Directory in which to execute `codecov.sh` | Optional
|
| `working-directory` | Directory in which to execute `codecov.sh` | Optional
|
||||||
| `xcode_derived_data` | Custom Derived Data Path for Coverage.profdata and gcov processing | Optional
|
| `xcode_derived_data` | Custom Derived Data Path for Coverage.profdata and gcov processing | Optional
|
||||||
| `xcode_package` | Specify packages to build coverage. Uploader will only build these packages. This can significantly reduces time to build coverage reports. -J 'MyAppName' Will match "MyAppName" and "MyAppNameTests" -J '^ExampleApp$' Will match only "ExampleApp" not "ExampleAppTests" | Optional
|
| `xcode_package` | Specify packages to build coverage. Uploader will only build these packages. This can significantly reduces time to build coverage reports. -J 'MyAppName' Will match "MyAppName" and "MyAppNameTests" -J '^ExampleApp$' Will match only "ExampleApp" not "ExampleAppTests" | Optional
|
||||||
|
|
||||||
|
|||||||
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -54136,7 +54136,7 @@ var buildExec = function () {
|
|||||||
var search_dir = core.getInput("directory");
|
var search_dir = core.getInput("directory");
|
||||||
var token = core.getInput("token");
|
var token = core.getInput("token");
|
||||||
var verbose = isTrue(core.getInput("verbose"));
|
var verbose = isTrue(core.getInput("verbose"));
|
||||||
var working_dir = core.getInput("working_directory");
|
var working_dir = core.getInput("working-directory");
|
||||||
var write_path = core.getInput("path_to_write_report");
|
var write_path = core.getInput("path_to_write_report");
|
||||||
var xcode_derived_data = core.getInput("xcode_derived_data");
|
var xcode_derived_data = core.getInput("xcode_derived_data");
|
||||||
var xcode_package = core.getInput("xcode_package");
|
var xcode_package = core.getInput("xcode_package");
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ test('all arguments', () => {
|
|||||||
"directory": "coverage/",
|
"directory": "coverage/",
|
||||||
"token": "d3859757-ab80-4664-924d-aef22fa7557b",
|
"token": "d3859757-ab80-4664-924d-aef22fa7557b",
|
||||||
"verbose": "t",
|
"verbose": "t",
|
||||||
"working_directory": "src",
|
"working-directory": "src",
|
||||||
"path_to_write_report": "codecov/",
|
"path_to_write_report": "codecov/",
|
||||||
"xcode_derived_data": "~/Library/Developer/Xcode/DerivedData",
|
"xcode_derived_data": "~/Library/Developer/Xcode/DerivedData",
|
||||||
"xcode_package": "MyApp"
|
"xcode_package": "MyApp"
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ let buildExec = () => {
|
|||||||
const search_dir = core.getInput("directory");
|
const search_dir = core.getInput("directory");
|
||||||
const token = core.getInput("token");
|
const token = core.getInput("token");
|
||||||
const verbose = isTrue(core.getInput("verbose"));
|
const verbose = isTrue(core.getInput("verbose"));
|
||||||
const working_dir = core.getInput("working_directory");
|
const working_dir = core.getInput("working-directory");
|
||||||
const write_path = core.getInput("path_to_write_report");
|
const write_path = core.getInput("path_to_write_report");
|
||||||
const xcode_derived_data = core.getInput("xcode_derived_data");
|
const xcode_derived_data = core.getInput("xcode_derived_data");
|
||||||
const xcode_package = core.getInput("xcode_package");
|
const xcode_package = core.getInput("xcode_package");
|
||||||
|
|||||||
Reference in New Issue
Block a user