Skip to content

Commit

Permalink
Better filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Hafeed3s committed Dec 30, 2023
1 parent 3a5227f commit 1b52a1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
defaults:
run:
shell: pwsh

jobs:
build:

Expand Down Expand Up @@ -57,6 +57,6 @@ jobs:
- name: Publish NuGet package
run: |
foreach($file in (Get-ChildItem . -Recurse -Include *.nupkg)) {
dotnet nuget push $file --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
foreach($package in (Get-ChildItem . -Recurse -Include SUTForge.*.nupkg)) {
dotnet nuget push $package.FullName --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
}

0 comments on commit 1b52a1f

Please sign in to comment.