We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0dd5a7 commit fc40b14Copy full SHA for fc40b14
.github/workflows/create-nightly-installer.yaml
@@ -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
26
+ commit_message: DISMTools Nightly Installer
27
+ if: success()
0 commit comments