Skip to content

Commit fc40b14

Browse files
committed
Test automation
1 parent e0dd5a7 commit fc40b14

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Create Nightly Installer
2+
3+
on:
4+
push:
5+
branches:
6+
- stable
7+
- dt_pre*
8+
9+
jobs:
10+
build-runspace:
11+
runs-on: windows-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.head_ref }}
16+
- name: Set up MSBuild
17+
uses: warrenbuckley/Setup-MSBuild@v1
18+
- name: Prepare NuGet packages
19+
run: nugetpkgprep.bat
20+
continue-on-error: false
21+
- name: Generate installer
22+
run: msbuild DISMTools.sln /p:Configuration=Debug /p:DeployOnBuild=true
23+
- name: Push nightly installer
24+
uses: stefanzweifel/git-auto-commit-action@v5
25+
with:
26+
commit_message: DISMTools Nightly Installer
27+
if: success()

0 commit comments

Comments
 (0)