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 5b7dad5 commit 3602cb9Copy full SHA for 3602cb9
.github/workflows/release.yml
@@ -104,9 +104,9 @@ jobs:
104
105
- name: Push Helm Chart to OCI Registry
106
run: |
107
- helm registry login ${{ env.REGISTRY }} \
+ echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ${{ env.REGISTRY }} \
108
-u ${{ github.actor }} \
109
- -p ${{ secrets.GITHUB_TOKEN }}
+ --password-stdin
110
111
CHART_VERSION=$(grep "^version:" ./helm/mcp-server/Chart.yaml | cut -d' ' -f2 | tr -d '"')
112
REPO_OWNER=$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')
0 commit comments