bitrise-steplib / steps-deploy-to-bitrise-io

Deploy build artifacts to bitrise.io
MIT License
23 stars 40 forks source link

Fix shorthand syntax #175

Closed godrei closed 1 year ago

godrei commented 1 year ago

Checklist

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 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.

Changes