Skip to content

Commit 72c42aa

Browse files
committed
Fix CI/CD
1 parent 91d9211 commit 72c42aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/build-and-test/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ runs:
3333
dotnet-version: 8.0.x
3434

3535
- name: Restore NuGet Packages
36-
run: dotnet restore --verbosity minimal
36+
run: dotnet restore ./FitnessApp.sln
3737
shell: bash
3838

39-
- name: Build .NET Project
39+
- name: Build .NET Solution
4040
run: |
41-
dotnet build "${{ inputs.backendCsprojPath }}" \
41+
dotnet build ./FitnessApp.sln \
4242
--no-restore \
4343
--configuration "${{ inputs.buildConfiguration }}"
4444
shell: bash

0 commit comments

Comments
 (0)