Skip to content

Commit

Permalink
Test alternate windows signing strategy.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsorby committed Feb 27, 2024
1 parent d3831cd commit 439b051
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-signing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: create-release

on:
push

jobs:
test_sign:
if: github.repository == 'MusculoskeletalAtlasProject/mapclient'
name: create_release
runs-on: windows-2019
steps:
- name: save secret to file
run: |
echo -n EV_CERTIFICATE_PFX_BASE64 | base64 -d -o ./ev_certificate.pfk
env:
EV_CERTIFICATE_PFX_BASE64: ${{ secrets.WIN_EV_CERTIFICATE_PFX_BASE64 }}
- name: Sign application
shell: bash
run: |
powershell -Command "(new-object net.webclient).DownloadString('https://github.com/MusculoskeletalAtlasProject/mapclient/releases/download/v0.20.1.rc2/MAP-Client-0.20.1.exe')"
ls
Signtool sign /?

0 comments on commit 439b051

Please sign in to comment.