Skip to content

Commit 7104f7c

Browse files
[CMP-1299] remove skip_packaging and skip_existing options (#19)
🐛 fix(release-helm-chart/action.yml): change packages_with_index value to string 'true' The skip_packaging and skip_existing options were removed as they were not necessary for the Helm chart release process. The packages_with_index value was changed from boolean true to string 'true' to match the expected input type, fixing a type mismatch issue.
1 parent cc832ba commit 7104f7c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/actions/release-helm-chart/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,8 @@ runs:
7272
with:
7373
charts_dir: .
7474
config: ./.cr.yaml
75-
skip_packaging: false
76-
skip_existing: false
7775
mark_as_latest: ${{ inputs.latest }}
78-
packages_with_index: true
76+
packages_with_index: 'true'
7977
pages_branch: gh-pages
8078
env:
8179
CR_TOKEN: ${{ inputs.github_token }}

0 commit comments

Comments
 (0)