From 6182b38e2c4320c0eb48721a9e0e1a28da4f7d56 Mon Sep 17 00:00:00 2001 From: Rodrigo Yokota Date: Tue, 21 Jul 2026 15:58:40 -0300 Subject: [PATCH] ci(release): add next release summary to workflow page --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c54e0e261e..be36ce4f7e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,3 +91,16 @@ jobs: if: github.event.inputs.version == 'next' run: | pnpm -r publish --tag next --no-git-checks + + - name: Release summary + if: success() && github.event.inputs.version == 'next' + run: | + VERSION=$(node -p "require('./packages/runtime/package.json').version") + { + echo "## Release summary" + echo "" + echo "- **Tag:** \`next\`" + echo "- **Branch:** \`${{ github.event.inputs.branch }}\`" + echo "- **Version:** \`$VERSION\`" + echo "- **Commit:** \`${{ github.sha }}\`" + } >> "$GITHUB_STEP_SUMMARY"