Skip to content

Commit 91c87ee

Browse files
authored
Update working directory for dotnet commands
1 parent eb2a204 commit 91c87ee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ jobs:
2424
dotnet-version: 8.0.x
2525
- name: Restore dependencies
2626
run: dotnet restore
27+
working-directory: ./src
2728
- name: Build
2829
run: dotnet build --no-restore -c release
30+
working-directory: ./src
2931
- name: Test
3032
run: dotnet test --no-build -c release --verbosity normal
33+
working-directory: ./src
3134

3235
- name: Upload signing file list
3336
uses: actions/upload-artifact@v4
@@ -39,7 +42,7 @@ jobs:
3942
uses: actions/upload-artifact@v4
4043
with:
4144
name: BuildArtifacts
42-
path: src/Kerberos.NET/bin/Release/**/*.nupkg
45+
path: ./src/Kerberos.NET/bin/Release/**/*.nupkg
4346

4447
sign:
4548
needs: build

0 commit comments

Comments
 (0)