Skip to content

Commit

Permalink
fix helm reference
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum committed Mar 1, 2024
1 parent 387ea5f commit c7af767
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
id: deploy
continue-on-error: true
with:
exec: helm upgrade ${{ env.REPO_NAME }} ./.helm/app/ --install --wait --atomic --namespace=${{ inputs.env }} --values=./.helm/app/values.yaml
exec: helm upgrade ${{ env.REPO_NAME }} ./helm --install --namespace=${{ inputs.env }} --values=./helm/env/${{ inputs.env }}.values.yaml
kubeconfig: ${{ env.KUBECONFIG_CONTENT }}

- name: Deploy to local from bastion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ jobs:
id: deploy
continue-on-error: true
with:
exec: helm upgrade ${{ env.REPO_NAME }} ./.helm/app/ --install --wait --atomic --namespace=${{ inputs.env }} --values=./.helm/app/values.yaml
exec: helm upgrade ${{ env.REPO_NAME }} ./helm --install --namespace=${{ inputs.env }} --values=./helm/env/${{ inputs.env }}.values.yaml
kubeconfig: ${{ env.KUBECONFIG_CONTENT }}

- name: Deploy to local from bastion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
id: deploy
continue-on-error: true
with:
exec: helm upgrade ${{ env.REPO_NAME }} ./.helm/app/ --install --wait --atomic --namespace=${{ inputs.env }} --values=./.helm/app/values.yaml
exec: helm upgrade ${{ env.REPO_NAME }} ./helm --install --namespace=${{ inputs.env }} --values=./helm/env/${{ inputs.env }}.values.yaml
kubeconfig: ${{ env.KUBECONFIG_CONTENT }}

- name: Deploy to local from bastion
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/build-deploy-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,19 @@ jobs:
echo "EOF" >> $GITHUB_ENV
shell: bash

- name: List directory structure
run: |
pwd
ls -l
ls -l ./.helm/app/
- name: Deploy to cloud
uses: WyriHaximus/github-action-helm3@v3
if: ${{ inputs.cloud_deploy && !inputs.skip_deploy }}
id: deploy
continue-on-error: true
with:
exec: helm upgrade ${{ env.REPO_NAME }} ./.helm/app/ --install --wait --atomic --namespace=${{ inputs.env }} --values=./.helm/app/values.yaml
exec: helm upgrade ${{ env.REPO_NAME }} ./helm --install --namespace=${{ inputs.env }} --values=./helm/env/${{ inputs.env }}.values.yaml
kubeconfig: ${{ env.KUBECONFIG_CONTENT }}

- name: Deploy to local from bastion
Expand Down

0 comments on commit c7af767

Please sign in to comment.