Skip to content

Commit

Permalink
ci(feature): add windows signed builds
Browse files Browse the repository at this point in the history
  • Loading branch information
leet4tari committed Sep 10, 2024
1 parent 2ab3400 commit c5321dc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,24 @@ jobs:
${{ env.TARGET_BINS }} \
${{ matrix.builds.flags }} --locked
- name: Sign Windows files with Trusted Certificate
if: ${{ ( startsWith(runner.os,'Windows') ) && ( env.AZURE_TENANT_ID != '' ) }}
env:
AZURE_TENANT_ID: ${{ secrets.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://eus.codesigning.azure.net/
trusted-signing-account-name: Tari
certificate-profile-name: Tarilabs
files-folder: ${{ github.workspace }}/target/${{ matrix.builds.target }}/
files-folder-filter: exe,dll
file-digest: SHA256
timestamp-rfc3161: http://timestamp.acs.microsoft.com
timestamp-digest: SHA256

- name: Copy binaries to folder for archiving
shell: bash
run: |
Expand Down

0 comments on commit c5321dc

Please sign in to comment.