We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b084e9b commit 2f7d3d0Copy full SHA for 2f7d3d0
.github/workflows/helm_publish.yaml
@@ -36,9 +36,9 @@ jobs:
36
- name: Push to OCI Registry
37
run: |
38
echo ${{ secrets.CR_TOKEN }} | helm registry login ghcr.io -u ${{ github.actor }} --password-stdin
39
- git fetch origin gh-pages || echo "No gh-pages branch found"
40
- git checkout gh-pages -- charts/ || echo "No charts directory in gh-pages"
41
- ls -la charts/ || echo "No charts directory found"
+ git fetch origin gh-pages
+ git checkout origin/gh-pages -- charts/
+ ls -la charts/
42
for chart in charts/k8gb-*.tgz; do
43
if [ -f "$chart" ]; then
44
helm push "$chart" "oci://ghcr.io/k8gb-io/charts"
0 commit comments