Skip to content

Commit

Permalink
Fixed build recusion in Build Projects step.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryanb58 committed Jun 6, 2023
1 parent 3610bdb commit b5eb6da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-and-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:

- name: Build projects
run: |
FOR /R %%F IN (*.cdsproj) DO (
msbuild "%%F"
)
Get-ChildItem -Recurse -Filter "*.cdsproj" |
ForEach-Object {
msbuild /p:configuration=Release $_.FullName
}
- name: Publish artifacts
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit b5eb6da

Please sign in to comment.