diff --git a/.github/workflows/executable.yml b/.github/workflows/executable.yml index cac25b8e3..d64b635bd 100644 --- a/.github/workflows/executable.yml +++ b/.github/workflows/executable.yml @@ -58,12 +58,6 @@ jobs: run: npm install resedit - name: Update metadata run: node ./scripts/win-metadata-update.js - # - name: Download Sigcheck - # run: | - # Invoke-WebRequest -Uri https://download.sysinternals.com/files/Sigcheck.zip -OutFile sigcheck.zip - # Expand-Archive -Path sigcheck.zip -DestinationPath . - # - name: Run Sigcheck - # run: .\sigcheck.exe -accepteula -a ./percy.exe # - name: Sign binary # uses: lando/code-sign-action@v2 # with: @@ -72,7 +66,12 @@ jobs: # certificate-password: ${{ secrets.WINDOWS_CERT_KEY }} - name: Verify executable run: ./percy.exe --version - + - name: Download Sigcheck + run: | + Invoke-WebRequest -Uri https://download.sysinternals.com/files/Sigcheck.zip -OutFile sigcheck.zip + Expand-Archive -Path sigcheck.zip -DestinationPath . + - name: Run Sigcheck + run: .\sigcheck.exe -accepteula -a ./percy.exe # - name: Upload win artifact # uses: actions/upload-artifact@v4 # with: