We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8ba52 commit 28dc26bCopy full SHA for 28dc26b
action.yml
@@ -253,6 +253,9 @@ runs:
253
shell: bash
254
run: |
255
echo '${{ inputs.extra-env-vars }}' > env.json
256
+ for var in $(jq -r 'keys[]' env.json); do
257
+ echo "::add-mask::$(jq -r --arg v "$var" '.[$v]' env.json)"
258
+ done
259
cat env.json | jq -r 'to_entries | .[] | "\(.key)=\(.value)"' >> $GITHUB_ENV
260
261
- name: Ensure argocd repo structure
0 commit comments