This PR fixes the shorthand syntax for the pipeline_intermediate_files input.
The syntax originally suggested using $ENV_VAR as a shorthand for $ENV_VAR:ENV_VAR, but it should be just ENV_VAR, without the dollar sign ($).
The provided $ENV_VAR will be expanded before getting exposed for the step by the Bitrise CLI.
This means, when ENV_VAR=./file, the step sees ./file. This resulted in uploading the ./file with the env var key: ./file.
Checklist
step.yml
andREADME.md
is updated with the changes (if needed)Version
Requires a PATCH version update
Context
This PR fixes the shorthand syntax for the
pipeline_intermediate_files
input. The syntax originally suggested using$ENV_VAR
as a shorthand for$ENV_VAR:ENV_VAR
, but it should be justENV_VAR
, without the dollar sign ($
).The provided
$ENV_VAR
will be expanded before getting exposed for the step by the Bitrise CLI. This means, whenENV_VAR=./file
, the step sees./file
. This resulted in uploading the./file
with the env var key:./file
.Changes
pipeline_intermediate_files
shorthand syntax