From 7df3bc73824e68ff937476abc5ec9156071abf7b Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Thu, 26 Feb 2026 10:44:59 -0500 Subject: [PATCH] ci(workflow): remove social media posting from release workflow --- .github/workflows/release.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1ac901..f3b59e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,35 +97,3 @@ jobs: tag: ${{ github.ref_name }} prerelease: ${{ contains(github.ref_name, '-') }} - notify-bluesky: - needs: [release] - if: ${{ !contains(github.ref_name, '-') }} - uses: CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main - with: - post_text: | - 🚀 Visual Studio Toolbox v${{ needs.release.outputs.version }} released! - - Visual Studio Toolbox is a sleek system tray application for Windows that helps you manage all your Visual Studio installations in one place. - - [Check out the release notes here!](https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }}) - secrets: - BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} - BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }} - - notify-x: - needs: [release] - if: ${{ !contains(github.ref_name, '-') }} - uses: CodingWithCalvin/.github/.github/workflows/x-post.yml@main - with: - post_text: | - 🚀 Visual Studio Toolbox v${{ needs.release.outputs.version }} released! - - Visual Studio Toolbox is a sleek system tray application for Windows that helps you manage all your Visual Studio installations in one place. - - Check out the release notes here: https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }} - 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 }} -