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 eb2a204 commit 91c87eeCopy full SHA for 91c87ee
.github/workflows/dotnet.yml
@@ -24,10 +24,13 @@ jobs:
24
dotnet-version: 8.0.x
25
- name: Restore dependencies
26
run: dotnet restore
27
+ working-directory: ./src
28
- name: Build
29
run: dotnet build --no-restore -c release
30
31
- name: Test
32
run: dotnet test --no-build -c release --verbosity normal
33
34
35
- name: Upload signing file list
36
uses: actions/upload-artifact@v4
@@ -39,7 +42,7 @@ jobs:
39
42
40
43
with:
41
44
name: BuildArtifacts
- path: src/Kerberos.NET/bin/Release/**/*.nupkg
45
+ path: ./src/Kerberos.NET/bin/Release/**/*.nupkg
46
47
sign:
48
needs: build
0 commit comments