We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67af430 commit 5c8a50dCopy full SHA for 5c8a50d
.github/workflows/push-helm.yaml
@@ -28,15 +28,10 @@ jobs:
28
29
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
30
31
- - name: Login to GitHub Container Registry
32
- uses: docker/login-action@v3
33
- with:
34
- registry: ghcr.io
35
- username: ${{ github.actor }}
36
- password: ${{ secrets.GITHUB_TOKEN }}
37
-
38
- name: Package and push helm chart
39
run: |
+ echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login ghcr.io --username "${{ github.actor }}" --password-stdin
+
40
VERSION=${{ steps.set_version.outputs.VERSION }}
41
42
helm package ./deployments/helm/nvidia-device-plugin --version "$VERSION"
0 commit comments