Skip to content

Commit

Permalink
ci: remove src from sln file path
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-welker committed Dec 27, 2023
1 parent 80c7c2b commit 3c58e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
- name: Setup MS Build
uses: microsoft/setup-msbuild@v1.1
- name: restore Nuget Packages
run: nuget restore .\src\${{ steps.get_sln_info.outputs.SOLUTION_FILE }}.sln
run: nuget restore .\${{ steps.get_sln_info.outputs.SOLUTION_FILE }}.sln
- name: Build Solution
run: msbuild .\src\${{ steps.get_sln_info.outputs.SOLUTION_FILE }}.sln /p:Platform="Any CPU" /p:Configuration="Debug" /p:Version="${{ needs.GetVersionNumber.outputs.version }}" -m
run: msbuild .\${{ steps.get_sln_info.outputs.SOLUTION_FILE }}.sln /p:Platform="Any CPU" /p:Configuration="Debug" /p:Version="${{ needs.GetVersionNumber.outputs.version }}" -m
- name: Get release notes
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 3c58e86

Please sign in to comment.