Skip to content

Commit bbe22bf

Browse files
authored
chore(ci): add LinkedIn notification to publish workflow (#40)
* chore(ci): add LinkedIn notification to publish workflow - Rename notify job to notify-bluesky - Add notify-linkedin job for LinkedIn posting on release * chore(ci): update bluesky inputs to match current workflow * chore(ci): add hashtags to social notifications * chore(ci): add release notes link to bluesky post * chore(ci): add release notes link to linkedin post
1 parent 4aaa8e8 commit bbe22bf

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
publish-manifest-path: ./resources/extension.manifest.json
5353
vsix-path: ./artifact/CodingWithCalvin.GitRanger.vsix
5454

55-
notify:
55+
notify-bluesky:
5656
needs: publish
5757
uses: CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main
5858
with:
@@ -61,7 +61,27 @@ jobs:
6161
6262
[Check out the release notes here!](https://github.com/${{ github.repository }}/releases/tag/${{ needs.publish.outputs.version }})
6363
64-
Marketplace: https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-GitRanger
64+
#dotnet #csharp #visualstudio
65+
embed_url: https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-GitRanger
66+
embed_title: Git Ranger for Visual Studio
67+
embed_description: A visually stunning Git management extension for Visual Studio 2022/2026
6568
secrets:
6669
BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }}
6770
BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }}
71+
72+
notify-linkedin:
73+
needs: publish
74+
uses: CodingWithCalvin/.github/.github/workflows/linkedin-post.yml@main
75+
with:
76+
post_text: |
77+
🚀 Git Ranger v${{ needs.publish.outputs.version }} for #VisualStudio has been released!
78+
79+
Check out the release notes: https://github.com/${{ github.repository }}/releases/tag/${{ needs.publish.outputs.version }}
80+
81+
#dotnet #csharp #visualstudio
82+
article_url: https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-GitRanger
83+
article_title: Git Ranger for Visual Studio
84+
article_description: A visually stunning Git management extension for Visual Studio 2022/2026
85+
secrets:
86+
LINKEDIN_ACCESS_TOKEN: ${{ secrets.LINKEDIN_ACCESS_TOKEN }}
87+
LINKEDIN_CLIENT_ID: ${{ secrets.LINKEDIN_CLIENT_ID }}

0 commit comments

Comments
 (0)