Skip to content

Commit

Permalink
ci: fix helm push on release
Browse files Browse the repository at this point in the history
  • Loading branch information
fredleger committed Mar 18, 2024
1 parent f20fa88 commit 5f91584
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ jobs:
- name: 🔒 Login to OCI registry
run: |
echo "+ login to OCI registry"
helm registry login ${vars.OCI_REGISTRY} -u "${vars.OCI_REGISTRY_USERNAME}" -p "${secrets.OCI_REGISTRY_PASSWORD}"
helm registry login ${OCI_REGISTRY} -u "${OCI_REGISTRY_USERNAME}" -p "${OCI_REGISTRY_PASSWORD}"
env:
OCI_REGISTRY: ${{ vars.OCI_REGISTRY }}
OCI_REGISTRY_USERNAME: ${{ vars.OCI_REGISTRY_USERNAME }}
OCI_REGISTRY_PASSWORD: ${{ secrets.OCI_REGISTRY_PASSWORD }}

# Push the chart
- name: ⚓ Push Helm Chart to OCI registry
Expand Down

0 comments on commit 5f91584

Please sign in to comment.