Skip to content

Commit

Permalink
fix: support multi-line KV for secrets, envvars, and labels (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Mar 18, 2022
1 parent df7f037 commit 2cf760b
Show file tree
Hide file tree
Showing 5 changed files with 358 additions and 299 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,9 @@ jobs:
env_vars_file: './tests/env-var-files/test.good.yaml'
build_environment_variables: 'FOO=bar, ZIP=zap'
build_environment_variables_file: './tests/env-var-files/test.good.yaml'
secret_environment_variables: 'FOO=${{ secrets.DEPLOY_CF_SECRET_VERSION_REF }},BAR=${{ secrets.DEPLOY_CF_SECRET_REF }}'
secret_environment_variables: |-
FOO=${{ secrets.DEPLOY_CF_SECRET_VERSION_REF }}
BAR=${{ secrets.DEPLOY_CF_SECRET_REF }}
secret_volumes: '/etc/secrets/foo=${{ secrets.DEPLOY_CF_SECRET_VERSION_REF }}'
min_instances: 2
max_instances: 5
Expand Down
8 changes: 4 additions & 4 deletions dist/index.js

Large diffs are not rendered by default.

0 comments on commit 2cf760b

Please sign in to comment.