forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Azure code signing for the Windows release DLLs
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,6 +139,25 @@ jobs: | |
- name: Build packages | ||
run: ./vcpkg install --vcpkg-root=${{ matrix.vcpkg_path }} --clean-after-build --recurse ${{ env.VCPKG_PACKAGES }} | ||
working-directory: ${{ matrix.vcpkg_path }} | ||
|
||
- name: "[Windows] Sign release DLLs" | ||
env: | ||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | ||
if: runner.os == 'Windows' && env.AZURE_TENANT_ID | ||
uses: azure/[email protected] | ||
with: | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} | ||
endpoint: https://weu.codesigning.azure.net/ | ||
code-signing-account-name: mixxx | ||
certificate-profile-name: mixxx | ||
files-folder: ${{ matrix.vcpkg_path }}/installed/${{ matrix.vcpkg_triplet }}/bin | ||
files-folder-filter: dll | ||
file-digest: SHA256 | ||
timestamp-rfc3161: http://timestamp.acs.microsoft.com | ||
timestamp-digest: SHA256 | ||
timeout: 600 | ||
|
||
- name: Upload GitHub Actions artifacts of build logs | ||
if: always() | ||
|