File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3131 - name : Sign files
3232 uses : ./actions/code-signing
3333 with :
34- client-id : ${{secrets.AZURE_CLIENT_ID}}
35- tenant-id : ${{secrets.AZURE_TENANT_ID}}
36- subscription-id : ${{secrets.AZURE_SUBSCRIPTION_ID}}
37- directory : files-to-sign
34+ client-id : ${{ secrets.AZURE_CLIENT_ID }}
35+ tenant-id : ${{ secrets.AZURE_TENANT_ID }}
36+ subscription-id : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
37+ directory : ${{ github.workspace }}\ files-to-sign
Original file line number Diff line number Diff line change 2929 if : steps.should_sign.outputs.should_sign == 'true'
3030 uses : azure/login@a457da9ea143d694b1b9c7c869ebb04ebe844ef5 # v2.3.0
3131 with :
32- client-id : ${{inputs.client-id}}
33- tenant-id : ${{inputs.tenant-id}}
34- subscription-id : ${{inputs.subscription-id}}
32+ client-id : ${{ inputs.client-id }}
33+ tenant-id : ${{ inputs.tenant-id }}
34+ subscription-id : ${{ inputs.subscription-id }}
3535
3636 - name : Install sign cli
3737 if : steps.should_sign.outputs.should_sign == 'true'
4444 shell : pwsh
4545 run : |
4646 dotnet tool run sign code trusted-signing `
47- -base-directory ${{inputs.directory}} `
47+ -- base-directory ${{ inputs.directory }} `
4848 --trusted-signing-account ImageMagick `
4949 --trusted-signing-certificate-profile ImageMagick `
5050 --trusted-signing-endpoint https://eus.codesigning.azure.net `
You can’t perform that action at this time.
0 commit comments