Skip to content

Commit

Permalink
correct split indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemrm committed Dec 8, 2024
1 parent 2adb761 commit 2d52241
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
with:
version: v3.10.0

- name: Install yq
uses: mikefarah/yq@v4.44.6

- name: Login to mrmhub
run: |
echo '${{ secrets.MRMHUB_PASSWORD }}' | helm registry login mrmhub.io --username '${{ secrets.MRMHUB_USERNAME }}' --password-stdin
Expand All @@ -32,8 +29,8 @@ jobs:
id: chart_meta
run: |
cat >> "$GITHUB_OUTPUT" <<EOF
chart_name=$(cut -d / -f 4 <<<"${{ github.ref }}")
chart_version=$(cut -d / -f 5- <<<"${{ github.ref }}")
chart_name=$(cut -d / -f 3 <<<"${{ github.ref }}")
chart_version=$(cut -d / -f 4- <<<"${{ github.ref }}")
EOF
- name: Package chart
Expand Down

0 comments on commit 2d52241

Please sign in to comment.