Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 42 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
prerelease: ${{ contains(steps.version.outputs.VERSION, '-') }}
files: |
./nupkg/*.nupkg
./nupkg/*.snupkg

# Get a short-lived NuGet API key
- name: NuGet login (OIDC → temp API key)
Expand All @@ -71,3 +70,45 @@ jobs:
dotnet nuget push $_.FullName --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
}
shell: pwsh

post-bluesky:
name: Post to BlueSky
needs: publish
uses: CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main
with:
post_text: |
🔭 CodingWithCalvin.Otel4Vsix ${{ github.ref_name }} has been released!

Add OpenTelemetry observability to your Visual Studio extensions in minutes!

📦 [NuGet](https://www.nuget.org/packages/CodingWithCalvin.Otel4Vsix)
📝 [Release Notes](https://github.com/CodingWithCalvin/Otel4Vsix/releases/tag/${{ github.ref_name }})

#dotnet #visualstudio #opentelemetry #vsix #nuget
embed_url: https://github.com/CodingWithCalvin/Otel4Vsix/releases/tag/${{ github.ref_name }}
embed_title: "Otel4Vsix ${{ github.ref_name }}"
embed_description: "OpenTelemetry support library for Visual Studio 2022+ extensions"
secrets:
BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }}
BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }}

post-linkedin:
name: Post to LinkedIn
needs: publish
uses: CodingWithCalvin/.github/.github/workflows/linkedin-post.yml@main
with:
post_text: |
🔭 CodingWithCalvin.Otel4Vsix ${{ github.ref_name }} has been released!

Add OpenTelemetry observability to your Visual Studio extensions in minutes!

📦 NuGet: https://www.nuget.org/packages/CodingWithCalvin.Otel4Vsix
📝 Release Notes: https://github.com/CodingWithCalvin/Otel4Vsix/releases/tag/${{ github.ref_name }}

#dotnet #visualstudio #opentelemetry #vsix #nuget
article_url: https://github.com/CodingWithCalvin/Otel4Vsix/releases/tag/${{ github.ref_name }}
article_title: "Otel4Vsix ${{ github.ref_name }}"
article_description: "OpenTelemetry support library for Visual Studio 2022+ extensions"
secrets:
LINKEDIN_ACCESS_TOKEN: ${{ secrets.LINKEDIN_ACCESS_TOKEN }}
LINKEDIN_CLIENT_ID: ${{ secrets.LINKEDIN_CLIENT_ID }}
Loading