From acd97aa1bc94136e59b94d6d68fe5a6960f9d18b Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Thu, 26 Feb 2026 10:45:13 -0500 Subject: [PATCH] ci(workflow): remove social media posting from publish workflow --- .github/workflows/publish.yml | 38 ----------------------------------- 1 file changed, 38 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c06cda6..7084f9d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -68,41 +68,3 @@ jobs: artifacts/packages/CodingWithCalvin.VsixSdk.${{ steps.version.outputs.VERSION }}.nupkg artifacts/packages/CodingWithCalvin.VsixSdk.Templates.${{ steps.version.outputs.VERSION }}.nupkg - notify-bluesky: - needs: release - uses: CodingWithCalvin/.github/.github/workflows/bluesky-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 - embed_title: CodingWithCalvin.VsixSdk - embed_description: An MSBuild SDK for modern SDK-style Visual Studio extension development - secrets: - 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 }} -