test github action windows installer #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Windows Installer | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
windows_installer: | |
name: Build the Inno Setup Installer | |
runs-on: windows-latest | |
steps: | |
- uses: actions/setup-python@v5 | |
- uses: actions/checkout@v4 | |
- shell: pwsh | |
run: ./build-exe.ps1 | |
- name: Compile .ISS to .EXE Installer | |
uses: Minionguyjpro/[email protected] | |
with: | |
path: _setup.iss | |
options: /O+ | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist/windows-cli-installer.exe | |
asset_name: windows-cli-installer.exe | |
tag: ${{ github.ref }} | |
overwrite: true |