From ae8e72fd13d2d2c08d5fede3bf9839ca15793b21 Mon Sep 17 00:00:00 2001 From: Maribeth Moffatt Date: Mon, 4 May 2026 16:05:14 -0400 Subject: [PATCH] chore: Add tagging for blockly releases in publish workflow (#9810) --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f3a414ba5..1ade41b6a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -154,6 +154,9 @@ jobs: git add packages/blockly/package.json package-lock.json git commit -m "release: v${{ needs.version.outputs.version }}" git push + TAG="blockly-v${{ needs.version.outputs.version }}" + git tag "$TAG" + git push origin "refs/tags/$TAG" - name: Setup Node.js uses: actions/setup-node@v5