Skip to content

Commit

Permalink
Bring back in the rest of the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewMusser committed Jul 25, 2024
1 parent d5f0f1e commit e126f0f
Showing 1 changed file with 48 additions and 4 deletions.
52 changes: 48 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ run-name: Publish LPM Installer ${{ github.ref_name }}
on:
push:
tags:
- test*
- v*

jobs:
release-installer:
Expand All @@ -24,9 +24,53 @@ jobs:

- 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: iscc .\utils\Setup.iss
- name: Create the EXE Installer
working-directory: ./utils
run: ./BuildInstaller.bat

- name: Code Signing Setup - Setup Certificate
shell: bash
run: echo "${{secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > /d/Certificate_pkcs12.p12

- name: Code Signing Setup - add to path
shell: bash
run: |
echo "C:\Program Files (x86)\Windows Kits\10\App Certification Kit" >> $GITHUB_PATH
echo "C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools" >> $GITHUB_PATH
echo "C:\Program Files\DigiCert\DigiCert One Signing Manager Tools" >> $GITHUB_PATH
- name: Code Signing Setup - Setup SSM KSP on windows latest
shell: cmd
run: |
curl -X GET https://one.digicert.com/signingmanager/api-ui/v1/releases/smtools-windows-x64.msi/download -H "x-api-key:%SM_API_KEY%" -o smtools-windows-x64.msi
msiexec /i smtools-windows-x64.msi /quiet /qn
smksp_registrar.exe list
smctl.exe keypair ls
C:\Windows\System32\certutil.exe -csp "DigiCert Signing Manager KSP" -key -user
smksp_cert_sync.exe
- name: Code Signing Setup - Sign using Signtool
run: |
signtool.exe sign /sha1 ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 "./build/LPM-Setup.exe"
signtool.exe verify /v /pa "./build/LPM-Setup.exe"
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
aws-region: us-west-2
aws-access-key-id: ${{ secrets.LPM_S3_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.LPM_S3_SECRET_ACCESS_KEY }}

- name: Upload Installer to S3
run: |
aws s3 cp ./build/LPM-Setup.exe s3://loupe-lpm-assets/releases/latest/LPM-Setup.exe
aws s3 cp ./build/LPM-Setup.exe s3://loupe-lpm-assets/releases/${{ github.ref_name }}/LPM-Setup.exe

0 comments on commit e126f0f

Please sign in to comment.