Skip to content

Commit 051e440

Browse files
committed
Small tweak to improve the speed of signing the binary.
1 parent 1040516 commit 051e440

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,13 @@ jobs:
5959
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
6060

6161
- name: Sign executables
62-
run: sign code trusted-signing *.exe `
62+
run: sign code trusted-signing `
6363
--trusted-signing-account ImageMagick `
6464
--trusted-signing-certificate-profile ImageMagick `
6565
--trusted-signing-endpoint https://eus.codesigning.azure.net `
66-
--verbosity information
66+
--azure-credential-type azure-cli `
67+
--verbosity information `
68+
*.exe
6769
working-directory: ${{github.workspace}}/Artifacts
6870

6971
- name: Create Configs archive
@@ -87,4 +89,4 @@ jobs:
8789
shell: cmd
8890
env:
8991
GH_TOKEN: ${{github.token}}
90-
run: gh release create ${{env.release}} --title "Release ${{env.release}}" ${{github.workspace}}\Artifacts\Configure.Release.x64.exe ${{github.workspace}}\Artifacts\Configure.Release.arm64.exe ${{github.workspace}}\Artifacts\Configure.Release.x86.exe ${{github.workspace}}\files.zip
92+
run: gh release create ${{env.release}} --title "Release ${{env.release}}" ${{github.workspace}}\Artifacts\Configure.Release.x64.exe ${{github.workspace}}\Artifacts\Configure.Release.arm64.exe ${{github.workspace}}\Artifacts\Configure.Release.x86.exe ${{github.workspace}}\files.zip

0 commit comments

Comments
 (0)