-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (23 loc) · 801 Bytes
/
WinInstaller.yml
File metadata and controls
31 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Windows Installers Creation and Publication
on: [push]
jobs:
create-helloworld-windows-installers:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install go-msi
run: choco install -y "go-msi"
- name: Build Windows Installer MSI from exe file
uses: AliceOh/CreateWindowsInstaller@1.0.0
with:
exefile: 'helloworld.exe'
- name: Upload MSI for Windows to release page
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "test"
prerelease: true
title: "Windows Development Build"
files: |
helloworld.exe.msi