We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975bde4 commit 2dd0f63Copy full SHA for 2dd0f63
.github/workflows/release.yaml
@@ -123,3 +123,15 @@ jobs:
123
- name: Upload helm chart
124
run: |
125
cd helm && ./upload_chart.sh
126
+
127
+ - name: Login to GitHub Container Registry
128
+ uses: docker/login-action@v3
129
+ with:
130
+ registry: ghcr.io
131
+ username: ${{ github.actor }}
132
+ password: ${{ secrets.GITHUB_TOKEN }}
133
134
+ - name: Push Helm chart to OCI registry
135
+ run: |
136
+ helm package helm/robusta
137
+ helm push robusta-${{env.RELEASE_VER}}.tgz oci://ghcr.io/${{ github.repository_owner }}/charts
0 commit comments