Skip to content

Commit 3cea1bd

Browse files
Update create-nightly-installer.yaml
1 parent 6c2facd commit 3cea1bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: .github/workflows/create-nightly-installer.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
run: .\nugetpkgprep.bat
2222
continue-on-error: false
2323
- name: Generate installer
24-
run: msbuild DISMTools.vbproj /p:Configuration=Debug /p:DeployOnBuild=true /p:SolutionDir=$((Get-Location).Path)\ /p:ProjectDir=$((Get-Location).Path)\ /p:TargetDir=$((Get-Location).Path)\bin\Debug
24+
run: |
25+
$solutionDir = (Get-Location).Path
26+
$projectDir = (Get-Location).Path
27+
$targetDir = (Get-Location).Path + "\bin\Debug"
28+
msbuild DISMTools.vbproj /p:Configuration=Debug /p:DeployOnBuild=true /p:SolutionDir=$solutionDir /p:ProjectDir=$projectDir /p:TargetDir=$targetDir
2529
- name: Push nightly installer
2630
uses: stefanzweifel/git-auto-commit-action@v5
2731
with:

0 commit comments

Comments
 (0)