diff --git a/VERSION b/VERSION index ccad953..9ea63db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.12 +1.1.13 diff --git a/build.yaml b/build.yaml index b9d1449..b31dd30 100644 --- a/build.yaml +++ b/build.yaml @@ -310,8 +310,11 @@ jobs: sshEndpoint: 'Kubernetes Master' runOptions: inline inline: | + if ['${{ parameters.hasSecureHelmValuesFile }}' -eq 'true'] + then + $fileArg = '-f /tmp/${{ parameters.name }}-values.yaml' + fi helm repo update - $fileArg = if ('${{ parameters.hasSecureHelmValuesFile }}' -eq 'true') { '-f /tmp/${{ parameters.name }}-values.yaml' } helm upgrade --install --namespace ${{ parameters.namespace }} $(fileArg) $(repo) --atomic lynxmagnus/$(repo) --version $(version) --create-namespace condition: and(succeeded(), eq(${{ parameters.deploy }}, true))