We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2facd commit 3cea1bdCopy full SHA for 3cea1bd
.github/workflows/create-nightly-installer.yaml
@@ -21,7 +21,11 @@ jobs:
21
run: .\nugetpkgprep.bat
22
continue-on-error: false
23
- 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
+ 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
29
- name: Push nightly installer
30
uses: stefanzweifel/git-auto-commit-action@v5
31
with:
0 commit comments