X Tutup
Skip to content

Commit 839e411

Browse files
author
Nate Smith
authored
Merge pull request cli#148 from github/msi-action
Automate Windows packaging
2 parents 67c4d5c + 06d90d5 commit 839e411

File tree

24 files changed

+35954
-10
lines changed

24 files changed

+35954
-10
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 'Build MSI'
2+
description: 'Build, sign, and release Windows installers using WiX'
3+
inputs:
4+
version:
5+
description: 'what version to use for the built MSI'
6+
required: true
7+
exe:
8+
description: 'path to exe to wrap in MSI '
9+
required: true
10+
outputs:
11+
msi:
12+
description: 'path to MSI file'
13+
runs:
14+
using: 'node12'
15+
main: 'dist/index.js'

0 commit comments

Comments
 (0)
X Tutup