Skip to content

Commit

Permalink
fix: if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderMatt committed Oct 9, 2024
1 parent dc6b396 commit 3c8ecca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -458,12 +458,14 @@ jobs:
[[ '${{ inputs.oidc }}' == 'az_oidc' ]] && echo "$AZ_OIDC" >> values.yaml
[[ '${{ inputs.certificate }}' == 'letsencrypt_staging' ]] && echo "$LETSENCRYPT_STAGING" >> values.yaml
[[ '${{ inputs.certificate }}' == 'letsencrypt_production' ]] && echo "$LETSENCRYPT_PRODUCTION" >> values.yaml
if [[ '${{ inputs.isPreInstalled }}' == 'true']]; then
if [[ '${{ inputs.isPreInstalled }}' == 'true' ]]; then
cat <<EOF >> values.yaml
otomi:
isPreInstalled: true
EOF
fi
if [[ '${{ inputs.kms }}' == 'age' ]]; then
cat <<EOF >> values.yaml
kms:
Expand Down

0 comments on commit 3c8ecca

Please sign in to comment.