Github Action to Build and release Windows installer on github release page
  • JavaScript 100%
Find a file
2022-04-28 12:30:30 +12:00
dist add action's metadata file 2022-04-28 11:42:54 +12:00
.gitattributes Initial commit 2022-04-28 11:33:23 +12:00
action.yml Update README.md with example URL 2022-04-28 12:30:30 +12:00
index.js add action's metadata file 2022-04-28 11:42:54 +12:00
LICENSE Initial commit 2022-04-28 11:33:23 +12:00
package-lock.json add action's metadata file 2022-04-28 11:42:54 +12:00
package.json add action's metadata file 2022-04-28 11:42:54 +12:00
README.md Update README.md with example URL 2022-04-28 12:30:30 +12:00

Github action to create Windows Installer MSI file

This action create Windows Installer MSI files for the input exe file.

Inputs

exefile, required

what exe file to wrap in the built MSI

version, optional

what version to use for the built MSI, default is 0.0.1

Outputs

The Windows installation files for the input exe file

Example usage

      - name: Build Windows Installer MSI from exe file
        uses: AliceOh/CreateWindowsInstaller@1.0.0
        with:
          exefile: 'helloworld.exe'

a real example is here: https://github.com/AliceOh/ExampleUseWindowsInstallerGithubAction