Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSOE-864: Adding Validate NuGet Publish workflow, adding missing job names #108

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
publish-nuget:
name: Publish to NuGet
uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@dev
with:
# Don't generate any symbol package because we're not including the Lombiq.Analyzers.dll in the NuGet package
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/validate-nuget-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Validate NuGet Publish

on:
pull_request:
push:
branches:
- dev

jobs:
validate-nuget-publish:
name: Validate NuGet Publish
uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@dev
with:
# Don't generate any symbol package because we're not including the Lombiq.Analyzers.dll in the NuGet package
# itself, either. See Invoke-BeforePack.ps1 for details.
dotnet-pack-include-symbols: 'false'
Loading