Skip to content

Commit 6dd2f67

Browse files
authored
Update build-bmjr.yml
1 parent e822b0a commit 6dd2f67

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/build-bmjr.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@ jobs:
1212

1313
- uses: microsoft/setup-msbuild@v2
1414

15-
- name: Find the solution
16-
shell: pwsh
17-
run: |
18-
Get-ChildItem -Path 'vc++2026' -Recurse -Include *.sln,*.vcxproj |
19-
ForEach-Object { $_.FullName }
20-
2115
- name: Build
2216
shell: pwsh
2317
run: |
24-
$sln = Get-ChildItem -Path 'vc++2026' -Recurse -Filter *.sln |
25-
Select-Object -First 1
26-
msbuild $sln.FullName /p:Configuration=Release /p:Platform=x64 /m
18+
msbuild 'vc++2026\bmjr.vcxproj' /p:Configuration=Release /p:Platform=x64 /m
2719
2820
- name: Collect the binaries
2921
shell: pwsh
@@ -32,6 +24,7 @@ jobs:
3224
Get-ChildItem -Recurse -Include *.exe |
3325
Where-Object { $_.FullName -notmatch '\\obj\\' } |
3426
Copy-Item -Destination out
27+
Get-ChildItem out | ForEach-Object { $_.Name }
3528
3629
- uses: actions/upload-artifact@v4
3730
with:

0 commit comments

Comments
 (0)