You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please document that .gitignore should not have *.tgz in the gh-pages branch.
From what I have seen, it should only include a CNAME, README.md, your *.tgz files, and a index.yaml. The index and tgz's coming from this action.
It is common to start a project with a /chart/${CHART_NAME}and a .gitignore while testing.
That ignore file will likely include
# Ignore all .tgz files*.tgz
The readme currently states:
Pre-requisites
A GitHub repo containing a directory with your Helm charts (default is a folder named /charts, if you want to
maintain your charts in a different directory, you must include a charts_dir input in the workflow).
A GitHub branch called gh-pages to store the published charts.
When you create a gh-pages branch manually, it will copy over all the files in the main branch including the .gitignore and that will lead to helm/[email protected] erroring out
The following paths are ignored by one of your .gitignore files:
${CHART_NAME}-x.y.z.tgz
hint: Use -f if you really want to add them.
hint: Disable this message with "git config advice.addIgnoredFile false"
Error: exit status 1
The text was updated successfully, but these errors were encountered:
Please document that
.gitignore
should not have*.tgz
in thegh-pages
branch.From what I have seen, it should only include a
CNAME
,README.md
, your*.tgz
files, and aindex.yaml
. The index and tgz's coming from this action.It is common to start a project with a
/chart/${CHART_NAME}
and a.gitignore
while testing.That ignore file will likely include
The readme currently states:
When you create a
gh-pages
branch manually, it will copy over all the files in themain
branch including the.gitignore
and that will lead tohelm/[email protected]
erroring outThe text was updated successfully, but these errors were encountered: