Skip to content

Commit e550e82

Browse files
authored
housekeeping: Fix directories in sample building script.
1 parent ffff03c commit e550e82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-samples.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'samples/**'
1212

1313
jobs:
14-
build:
14+
build-samples:
1515
strategy:
1616
matrix:
1717
configuration: [Debug, Release]
@@ -41,12 +41,12 @@ jobs:
4141

4242
- name: Restore/Build the sample
4343
run: msbuild LoginApp.sln /t:restore,build /p:Configuration=$env:Configuration
44-
working-directory: Sample
44+
working-directory: samples
4545
env:
4646
Configuration: ${{ matrix.configuration }}
4747

4848
# Execute all unit tests in the solution
4949
- name: Execute unit tests
50-
working-directory: Sample
50+
working-directory: samples
5151
run: dotnet test LoginApp.sln
5252

0 commit comments

Comments
 (0)