Skip to content

Commit 5c441a7

Browse files
authored
feat: 'binary' argument to use a preinstalled cli executable (#112)
1 parent 44ecb3a commit 5c441a7

File tree

8 files changed

+427
-302
lines changed

8 files changed

+427
-302
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Codecov's Action supports inputs from the user. These inputs, along with their d
4747
| Input | Description | Required |
4848
| :--- | :--- | :---: |
4949
| `token` | Repository Codecov token. Used to authorize report uploads | *Required
50+
| `binary` | The file location of a pre-downloaded version of the CLI. If specified, integrity checking will be bypassed. | Optional
5051
| `codecov_yml_path` | Specify the path to the Codecov YML | Optional
5152
| `commit_parent` | Override to specify the parent commit SHA | Optional
5253
| `directory` | Directory to search for test result reports. | Optional

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ inputs:
55
token:
66
description: 'Repository Codecov token. Used to authorize report uploads'
77
required: false
8+
binary:
9+
description: 'The file location of a pre-downloaded version of the CLI. If specified, integrity checking will be bypassed.'
10+
required: false
811
codecov_yml_path:
912
description: 'Specify the path to the Codecov YML'
1013
required: false

0 commit comments

Comments
 (0)