Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
Fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
borchero committed May 13, 2022
1 parent dd13e4c commit dff9dc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
helm registry login ghcr.io --username ${{ github.actor }} --password-stdin
- name: Install yq
run: apk add yq
- name: Download Dependencies
run: helm dependency build
- name: Package Chart
run: |
helm package . \
--app-version $(cat values.yaml | yq .image.tag) \
--app-version $(yq e .image.tag values.yaml) \
--version ${{ github.ref_name }}
- name: Push Chart
run:
Expand Down

0 comments on commit dff9dc5

Please sign in to comment.