Skip to content

Update create-nightly-installer.yaml #7

Update create-nightly-installer.yaml

Update create-nightly-installer.yaml #7

name: Create Nightly Installer
on:
push:
branches:
- stable
- dt_pre*
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
build-runspace:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up MSBuild
uses: warrenbuckley/Setup-MSBuild@v1
- name: Prepare NuGet packages
run: .\nugetpkgprep.bat
continue-on-error: false
- name: Generate installer
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
- name: Push nightly installer
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: DISMTools Nightly Installer
if: success()