Skip to content

Commit abcf599

Browse files
Fix WiX project restore by adding back nuget restore step
Co-authored-by: benhegartysefe <134416196+benhegartysefe@users.noreply.github.com>
1 parent 1cbe8d9 commit abcf599

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ jobs:
128128
${{ runner.os }}-nuget-
129129
130130
- name: Restore packages
131-
run: dotnet restore ${{ env.SOLUTION_PATH }} --configfile pipelines/NuGet.config
131+
run: |
132+
nuget restore ${{ env.SOLUTION_PATH }} -ConfigFile pipelines/NuGet.config
133+
dotnet restore ${{ env.SOLUTION_PATH }} --configfile pipelines/NuGet.config
132134
133135
- name: Build solution
134136
run: msbuild ${{ env.SOLUTION_PATH }} /p:Configuration=${{ env.BUILD_CONFIGURATION }} /p:Platform="${{ env.BUILD_PLATFORM }}" /p:RunWixToolsOutOfProc=true /p:Version=${{ steps.version.outputs.VERSION }} /p:UseSharedCompilation=false /m:4 /clp:ErrorsOnly /nologo

0 commit comments

Comments
 (0)