Skip to content

Commit b1dfe6b

Browse files
author
Petr Sramek
committed
woohooo6
1 parent 8451871 commit b1dfe6b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/dotnet.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ jobs:
2121
- name: Restore
2222
run: dotnet restore
2323
- name: Build
24-
run: dotnet build --no-restore --configuration Release
24+
run: dotnet build ./src/**/*.csproj --no-restore --configuration Release
25+
- name: Upload
26+
uses: actions/upload-artifact@v4
27+
with:
28+
name: build
29+
path: |
30+
src/**/bin/*
31+
src/**/obj/*
2532
2633
test:
2734
name: Test with MsTest

0 commit comments

Comments
 (0)