Skip to content

Commit 4414a6f

Browse files
committed
Fix CI: target ScreenGrid.csproj for publish steps
1 parent 3bb9ba5 commit 4414a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
run: dotnet test -c Release --no-build --verbosity normal
3030

3131
- name: Publish (framework-dependent)
32-
run: dotnet publish -c Release -r win-x64 --no-self-contained -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=false -o ./artifacts/framework-dependent
32+
run: dotnet publish ScreenGrid.csproj -c Release -r win-x64 --no-self-contained -p:PublishSingleFile=true -p:EnableCompressionInSingleFile=false -o ./artifacts/framework-dependent
3333

3434
- name: Publish (self-contained)
35-
run: dotnet publish -c Release -r win-x64 --self-contained -p:PublishSingleFile=true -o ./artifacts/self-contained
35+
run: dotnet publish ScreenGrid.csproj -c Release -r win-x64 --self-contained -p:PublishSingleFile=true -o ./artifacts/self-contained
3636

3737
- name: Upload framework-dependent artifact
3838
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)