We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4889312 commit 84e8472Copy full SHA for 84e8472
src/@orb.yml
@@ -19,8 +19,8 @@ commands:
19
default: ""
20
token:
21
description: Set the private repository token as the value of the variable CODECOV_TOKEN using CircleCI Environment Variables.
22
- type: string
23
- default: ${CODECOV_TOKEN}
+ type: env_var_name
+ default: CODECOV_TOKEN
24
upload_name:
25
description: Custom defined name of the upload. Visible in Codecov UI
26
type: string
@@ -75,7 +75,7 @@ commands:
75
[[ -n "<< parameters.xtra_args >>" ]] && args+=( '<< parameters.xtra_args >>' )
76
bash codecov \
77
-Q "codecov-circleci-orb-1.2.3" \
78
- -t "<< parameters.token >>" \
+ -t "${<< parameters.token >>}" \
79
-n "<< parameters.upload_name >>" \
80
-F "<< parameters.flags >>" \
81
${args[@]}
0 commit comments