From 7ce51e0dadd87c3409a241d3567e244fd34b10a8 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 15 May 2026 07:39:33 +0000 Subject: [PATCH] fix: use correct release-please output key for root package dispatch The release-please-action v4 outputs plain keys (e.g. 'tag_name') for packages at root path '.', NOT path-prefixed keys ('.--tag_name'). The incorrect key caused dispatch-publish to always receive an empty TAG, silently skipping the helm-publish and release-retag dispatches. Co-Authored-By: kyle_hunter@bcit.ca --- .github/workflows/release-please.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index f8c9544..269e967 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -18,7 +18,7 @@ jobs: pull-requests: write outputs: releases_created: ${{ steps.rp.outputs.releases_created }} - tag_name: ${{ steps.rp.outputs['.--tag_name'] }} + tag_name: ${{ steps.rp.outputs['tag_name'] }} steps: - uses: googleapis/release-please-action@v4 id: rp