From 02eb2b4ef946cde45f203c3e2e8346d8f96c1c23 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 21 Jan 2026 15:12:19 -0500 Subject: [PATCH] feat(social): add X posting on release Add x job to post releases to X alongside BlueSky. Also convert post_text to YAML multiline format. --- .github/workflows/publish.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5437527..31704b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,8 +85,23 @@ jobs: needs: [publish, release] uses: CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main with: - post_text: "🚀 VSC as MCP v${{ needs.publish.outputs.version }} has been released!\n\n[GitHub Release](https://github.com/CodingWithCalvin/VSC-MCPServer/releases/tag/v${{ needs.publish.outputs.version }})\n[VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VSC-MCPServer)" + post_text: | + 🚀 VSC as MCP v${{ needs.publish.outputs.version }} has been released! + + [GitHub Release](https://github.com/CodingWithCalvin/VSC-MCPServer/releases/tag/v${{ needs.publish.outputs.version }}) + [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VSC-MCPServer) embed_title: "VSC as MCP v${{ needs.publish.outputs.version }}" embed_description: "Supercharge your AI coding assistants with VS Code's powerful language intelligence!" secrets: inherit + x: + needs: [publish, release] + uses: CodingWithCalvin/.github/.github/workflows/x-post.yml@main + with: + post_text: | + 🚀 VSC as MCP v${{ needs.publish.outputs.version }} has been released! + + GitHub Release: https://github.com/CodingWithCalvin/VSC-MCPServer/releases/tag/v${{ needs.publish.outputs.version }} + VS Code Marketplace: https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VSC-MCPServer + secrets: inherit +