Skip to content

Commit

Permalink
Remove all but the Inno steps from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewMusser committed Jul 24, 2024
1 parent 2c596dd commit 5abb063
Showing 1 changed file with 2 additions and 40 deletions.
42 changes: 2 additions & 40 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:
- v*
- test*

jobs:
release-installer:
Expand All @@ -27,42 +27,4 @@ jobs:

- 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
run: ./BuildInstaller.bat

0 comments on commit 5abb063

Please sign in to comment.