Skip to content

Commit

Permalink
fix: wrong chart path
Browse files Browse the repository at this point in the history
  • Loading branch information
joseftaha committed Jul 16, 2024
1 parent fad81cb commit 08bf33f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ jobs:

helm:
runs-on: ubuntu-latest
needs:
- changed-dirs
if: contains(needs.changed-dirs.outputs.changeDirs, 'chart/config-server-operator')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -99,7 +102,7 @@ jobs:
run: helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}

- name: Package Helm chart
run: helm package charts/config-server-operator --destination ./charts
run: helm package chart/config-server-operator --destination ./charts

- name: Push Helm chart to OCI registry
run: helm push ./charts/config-server-operator-*.tgz oci://ghcr.io/tu-wien-datalab
run: helm push ./chart/config-server-operator-*.tgz oci://ghcr.io/tu-wien-datalab

0 comments on commit 08bf33f

Please sign in to comment.