From f196ca97a6af1a096778c651435cce75f9051ded Mon Sep 17 00:00:00 2001 From: Radoslav Stoyanov Date: Fri, 8 Aug 2025 13:32:28 +0200 Subject: [PATCH] Fix step output name --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4683b8b..b2a8a25 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -197,7 +197,7 @@ jobs: const prs = data?.repository?.object?.associatedPullRequests?.nodes ?? []; if (prs.length === 0) { core.warning(`No PR found for commit ${sha}`); - core.setOutput('release_type', ''); + core.setOutput('version_type', 'minor'); return; } @@ -205,7 +205,7 @@ jobs: const matchedType = Object.entries(labelMap).find(([label]) => labels.includes(label))?.[1] || ''; core.info(`Matched release type: ${matchedType || 'minor'}`); - core.setOutput('release_type', matchedType); + core.setOutput('version_type', matchedType); - name: Calculate new version id: new_version