We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ee8fe commit ec2d90aCopy full SHA for ec2d90a
.github/workflows/fasttrack-nuget.yml
@@ -30,6 +30,16 @@ jobs:
30
- name: Pack NuGet package
31
run: dotnet pack FastTrack/FastTrack.csproj --configuration Release --no-build --output nupkgs
32
33
+ - name: List contents of nupkgs directory
34
+ run: |
35
+ echo "Listing contents of nupkgs directory:"
36
+ dir nupkgs
37
+
38
+ - name: Fail if no .nupkg found
39
40
+ if (!(Test-Path -Path "nupkgs/*.nupkg")) { Write-Error "No .nupkg file found in nupkgs directory."; exit 1 }
41
+ shell: pwsh
42
43
- name: Publish to NuGet.org
44
uses: actions/upload-artifact@v4
45
with:
0 commit comments