danhuawang commented on code in PR #10515:
URL: https://github.com/apache/gravitino/pull/10515#discussion_r3049560671


##########
.github/workflows/chart-release.yaml:
##########
@@ -0,0 +1,88 @@
+name: Publish Helm Charts
+
+on:
+  workflow_dispatch:
+    inputs:
+      version:
+        description: 'Chart version to publish (e.g., 1.3.0)'
+        required: true
+        type: string
+      username:
+        description: 'Docker Hub username'
+        required: true
+        type: string
+      token:
+        description: 'Publish Docker token'
+        required: true
+        type: string
+      docker_repo_name:
+        description: 'Docker repository name (default is apache)'
+        required: false
+        default: 'apache'
+        type: string
+      charts:
+        description: 'Charts to publish (comma-separated: 
gravitino,iceberg,lance or "all")'
+        required: false
+        default: 'all'
+        type: string
+
+jobs:
+  publish-helm-charts:
+    runs-on: ubuntu-latest
+    timeout-minutes: 30
+    env:
+      input_token: ${{ github.event.inputs.token }}
+      secrets_token: ${{ secrets.PUBLISH_DOCKER_TOKEN }}

Review Comment:
   Release manager has this token and it's the same with the docker image 
publish token



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to