Skip to content

Commit 7358e0e

Browse files
committed
fix: force add package files in helm-release workflow
The packages directory is correctly gitignored, but the workflow needs to force-add the generated .tgz files when creating releases.
1 parent ba8ab21 commit 7358e0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/helm-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ jobs:
229229
run: |
230230
# Add files
231231
git add ./charts/${{ env.CHART_NAME }}/Chart.yaml
232-
git add ./packages/*.tgz
232+
git add -f ./packages/*.tgz # Force add since packages are in .gitignore
233233
git add ./index.yaml
234234
235235
# Commit

0 commit comments

Comments
 (0)