Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/publish-helm-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ jobs:
version: ${{ inputs.helm-version }}

- name: Install helm-push plugin
run: helm plugin install https://github.com/chartmuseum/helm-push.git
# --verify=false: Helm v4 verifies plugin sources by default; the
# chartmuseum/helm-push plugin does not ship a verification manifest,
# so the install fails without this flag. The flag is a no-op on v3.
run: helm plugin install --verify=false https://github.com/chartmuseum/helm-push.git

- name: Set up yq
uses: dcarbone/install-yq-action@4075b4dca348d74bd83f2bf82d30f25d7c54539b # v1.3.1
Expand Down
Loading