Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Jan 2, 2021
1 parent 40b489d commit be4e2a5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
### 1.2.0

#### Features
- #185 [Placeholder]
- #193 Add all the bash params

#### Fixes
- #185 [Placeholder]
- #193 Fixes issue with working-directory

### 1.1.1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
| `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
| `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_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

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54136,7 +54136,7 @@ var buildExec = function () {
var search_dir = core.getInput("directory");
var token = core.getInput("token");
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 xcode_derived_data = core.getInput("xcode_derived_data");
var xcode_package = core.getInput("xcode_package");
Expand Down
2 changes: 1 addition & 1 deletion src/buildExec.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test('all arguments', () => {
"directory": "coverage/",
"token": "d3859757-ab80-4664-924d-aef22fa7557b",
"verbose": "t",
"working_directory": "src",
"working-directory": "src",
"path_to_write_report": "codecov/",
"xcode_derived_data": "~/Library/Developer/Xcode/DerivedData",
"xcode_package": "MyApp"
Expand Down
2 changes: 1 addition & 1 deletion src/buildExec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let buildExec = () => {
const search_dir = core.getInput("directory");
const token = core.getInput("token");
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 xcode_derived_data = core.getInput("xcode_derived_data");
const xcode_package = core.getInput("xcode_package");
Expand Down

0 comments on commit be4e2a5

Please sign in to comment.