From d6e896c1d29e273a272c117612cc544c6024dcdd Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 21 Jan 2026 15:11:19 -0500 Subject: [PATCH] feat(social): add X posting on release Add notify-x job to post releases to X alongside BlueSky. --- .github/workflows/publish.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e1786d9..c06cda6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -87,3 +87,22 @@ jobs: BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }} + notify-x: + needs: release + uses: CodingWithCalvin/.github/.github/workflows/x-post.yml@main + with: + post_text: | + 🚀 CodingWithCalvin.VsixSdk v${{ needs.release.outputs.version }} has been released! + + Build modern SDK-style Visual Studio extensions with ease! + + Release Notes: https://github.com/${{ github.repository }}/releases/tag/v${{ needs.release.outputs.version }} + NuGet: https://www.nuget.org/packages/CodingWithCalvin.VsixSdk + + #dotnet #csharp #visualstudio #nuget + secrets: + X_CONSUMER_KEY: ${{ secrets.X_CONSUMER_KEY }} + X_CONSUMER_KEY_SECRET: ${{ secrets.X_CONSUMER_KEY_SECRET }} + X_ACCESS_TOKEN: ${{ secrets.X_ACCESS_TOKEN }} + X_ACCESS_TOKEN_SECRET: ${{ secrets.X_ACCESS_TOKEN_SECRET }} +