tag released cli versions (#9071)

Co-authored-by: Max Paulus 🥪 <max@cline.bot>
This commit is contained in:
Max
2026-02-04 12:10:02 -08:00
committed by GitHub
co-authored by Max Paulus 🥪
parent a64f46a5f4
commit 8e3689a5d6
+8 -1
View File
@@ -9,7 +9,7 @@ on:
type: string
permissions:
contents: read
contents: write # Required for pushing tags
checks: write # Required by test workflow
pull-requests: write # Required by test workflow
@@ -88,6 +88,13 @@ jobs:
cd dist-standalone
npm publish --tag latest --access public
- name: Tag release
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag "v${{ steps.version.outputs.version }}-cli"
git push origin "v${{ steps.version.outputs.version }}-cli"
- name: Summary
run: |
echo "✅ Successfully published cline@${{ steps.version.outputs.version }} to NPM with tag 'latest'"