diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ccb51e9a34..2a2eb0e8b4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -627,6 +627,7 @@ jobs: WHEEL_IDS: ${{ needs.plan-release.outputs.wheel_ids }} CONTAINER_IDS: ${{ needs.plan-release.outputs.container_ids }} INCLUDE_HELM: ${{ needs.plan-release.outputs.include_helm }} + HELM_VERSION: ${{ needs.plan-release.outputs.helm_version }} with: github-token: ${{ secrets.CI_DISPATCH_TOKEN }} script: | @@ -645,6 +646,9 @@ jobs: helm_id: process.env.INCLUDE_HELM === "true" ? process.env.RELEASE_HELM_ID : null, + helm_version: process.env.INCLUDE_HELM === "true" + ? process.env.HELM_VERSION + : null, }, });