Skip to content

Commit

Permalink
Fix image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
azhavoro committed Feb 5, 2025
1 parent 84212cc commit da379e8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,13 @@ jobs:
helm dependency update
- name: Deploy to minikube
working-directory: helm-chart
run: |
printf " service:\n externalIPs:\n - $(minikube ip)\n" >> test.values.yaml
helm upgrade -n default release-${{ github.run_id }}-${{ github.run_attempt }} -i --create-namespace . -f cvat.values.yaml -f test.values.yaml
printf " service:\n externalIPs:\n - $(minikube ip)\n" >> helm-chart/test.values.yaml
helm upgrade release-${{ github.run_id }}-${{ github.run_attempt }} --install helm-chart \
-f helm-chart/cvat.values.yaml \
-f helm-chart/test.values.yaml \
--set cvat.backend.tag=${{ env.CVAT_VERSION }} \
--set cvat.frontend.tag=${{ env.CVAT_VERSION }}
- name: Update test config
run: |
Expand Down

0 comments on commit da379e8

Please sign in to comment.