Publish LPM Installer test6 #17
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: LPM Installer Publish | |
run-name: Publish LPM Installer ${{ github.ref_name }} | |
on: | |
push: | |
tags: | |
- test* | |
jobs: | |
release-installer: | |
runs-on: windows-2022 | |
timeout-minutes: 2 | |
env: | |
SM_API_KEY: ${{ secrets.SM_API_KEY }} | |
SM_CLIENT_CERT_FILE: "D:\\Certificate_pkcs12.p12" | |
SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }} | |
SM_HOST: ${{ secrets.SM_HOST }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }} | |
- name: Download Inno Setup installer | |
run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe" | |
- name: Install Inno Setup silently | |
run: .\is.exe /verysilent /dir="C:\Program Files\InnoSetup" | |
- name: Run iscc against .iss file | |
run: C:\Progra~1\InnoSetup\ISCC.exe .\utils\Setup.iss |