Skip to content

Commit be4e2a5

Browse files
committed
Update changelog
1 parent 40b489d commit be4e2a5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### 1.2.0
22

33
#### Features
4-
- #185 [Placeholder]
4+
- #193 Add all the bash params
55

66
#### Fixes
7-
- #185 [Placeholder]
7+
- #193 Fixes issue with working-directory
88

99
### 1.1.1
1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Codecov's Action currently supports five inputs from the user: `token`, `file`,
7070
| `path_to_write_report` | Write upload file to path before uploading | Optional
7171
| `root_dir` | Used when not in git/hg project to identify project root directory | Optional
7272
| `verbose` | Specify whether the Codecov output should be verbose | Optional
73-
| `working_directory` | Directory in which to execute `codecov.sh` | Optional
73+
| `working-directory` | Directory in which to execute `codecov.sh` | Optional
7474
| `xcode_derived_data` | Custom Derived Data Path for Coverage.profdata and gcov processing | Optional
7575
| `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
7676

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54136,7 +54136,7 @@ var buildExec = function () {
5413654136
var search_dir = core.getInput("directory");
5413754137
var token = core.getInput("token");
5413854138
var verbose = isTrue(core.getInput("verbose"));
54139-
var working_dir = core.getInput("working_directory");
54139+
var working_dir = core.getInput("working-directory");
5414054140
var write_path = core.getInput("path_to_write_report");
5414154141
var xcode_derived_data = core.getInput("xcode_derived_data");
5414254142
var xcode_package = core.getInput("xcode_package");

src/buildExec.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test('all arguments', () => {
4343
"directory": "coverage/",
4444
"token": "d3859757-ab80-4664-924d-aef22fa7557b",
4545
"verbose": "t",
46-
"working_directory": "src",
46+
"working-directory": "src",
4747
"path_to_write_report": "codecov/",
4848
"xcode_derived_data": "~/Library/Developer/Xcode/DerivedData",
4949
"xcode_package": "MyApp"

src/buildExec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let buildExec = () => {
3838
const search_dir = core.getInput("directory");
3939
const token = core.getInput("token");
4040
const verbose = isTrue(core.getInput("verbose"));
41-
const working_dir = core.getInput("working_directory");
41+
const working_dir = core.getInput("working-directory");
4242
const write_path = core.getInput("path_to_write_report");
4343
const xcode_derived_data = core.getInput("xcode_derived_data");
4444
const xcode_package = core.getInput("xcode_package");

0 commit comments

Comments
 (0)