Update README.md to point to new CLI #30
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: Windows Installer | |
on: [push] | |
jobs: | |
build: | |
name: Build installer on windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.102 | |
- name: Download Inno Setup | |
uses: suisei-cn/actions-download-file@v1 | |
with: | |
url: https://jrsoftware.org/download.php/is.exe | |
target: ../ | |
- name: Install Inno Setup | |
run: '../is.exe /VERYSILENT /NORESTART /ALLUSERS' | |
- name: Build QPM | |
run: dotnet publish -c Release -r win-x64 | |
- name: Compile Installer | |
run: '& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /f installer/installer.iss' | |
- name: Artifact Upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: QPM-installer.exe | |
path: ./installer/QPM-installer.exe |