Skip to content

Commit

Permalink
Fix references
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwatson484 committed Oct 30, 2022
1 parent ca0bc9b commit df4b1f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
6 changes: 3 additions & 3 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@ jobs:
condition: and(succeeded(), eq(variables.releaseExists, false))

- task: DownloadSecureFile@1
name: helmValuesFile
displayName: Download Helm values file
name: helmValuesFile
inputs:
secureFile: '${{ parameters.repo }}-values.yaml'
condition: and(succeeded(), eq(variables.hasSecureHelmValuesFile, true))
condition: and(succeeded(), eq(parameters.hasSecureHelmValuesFile, true))

- task: SSH@0
displayName: 'Deploy to Kubernetes'
Expand All @@ -291,7 +291,7 @@ jobs:
inline: |
helm repo update
helm upgrade --install --namespace ${{ parameters.namespace }} -f $(helmValuesFile.secureFilePath) ${{ parameters.repo }} --atomic lynxmagnus/${{ parameters.repo }} --version $(version) --create-namespace
condition: and(succeeded(), eq(variables.hasSecureHelmValuesFile, true), eq(variables.deploy, true))
condition: and(succeeded(), eq(parameters.hasSecureHelmValuesFile, true), eq(parameters.deploy, true))

- task: PublishBuildArtifacts@1
displayName: Publish artifacts
Expand Down

0 comments on commit df4b1f2

Please sign in to comment.