Merge pull request #168 from codecov/1.0.15

Add package argument
This commit is contained in:
Tom Hu
2020-11-16 11:23:18 -05:00
committed by GitHub
3 changed files with 5 additions and 1 deletions

2
dist/index.js vendored
View File

@@ -2600,6 +2600,8 @@ try {
}
const execArgs = ["codecov.sh"];
execArgs.push("-Q", "github-action");
if (file) {
execArgs.push(
"-f", `${file}`

View File

@@ -84,6 +84,8 @@ try {
}
const execArgs = ["codecov.sh"];
execArgs.push("-Q", "github-action");
if (file) {
execArgs.push(
"-f", `${file}`

View File

@@ -1,6 +1,6 @@
{
"name": "codecov-action",
"version": "1.0.14",
"version": "1.0.15",
"description": "Upload coverage reports to Codecov from GitHub Actions",
"main": "index.js",
"scripts": {