Skip to content

Commit

Permalink
Fix chart workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolas Philips committed Nov 6, 2023
1 parent 08a22e8 commit 3ef66ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ jobs:
if: ${{ github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v') }}
run: |
TAG=${{github.ref_name}}
yq e -i ".app.image.tag = \"${TAG}\"" charts/gitops-nginx-demo/values.yaml
yq e -i ".version = \"${TAG#v}\"" charts/gitops-nginx-demo/Chart.yaml
yq e -i ".appVersion = \"${TAG#v}\"" charts/gitops-nginx-demo/Chart.yaml
yq e -i ".app.image.tag = \"${TAG}\"" charts/kargo-demo-app/values.yaml
yq e -i ".version = \"${TAG#v}\"" charts/kargo-demo-app/Chart.yaml
yq e -i ".appVersion = \"${TAG#v}\"" charts/kargo-demo-app/Chart.yaml
- name: Checkout forked chart-releaser
if: ${{ github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v') }}
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion charts/kargo-demo-app/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
name: gitops-nginx-demo
name: kargo-demo-app
version: 0.1.0
appVersion: 0.1.0
dependencies:
Expand Down

0 comments on commit 3ef66ef

Please sign in to comment.