-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Azure Code Signing Action and other deps
- Loading branch information
Showing
1 changed file
with
4 additions
and
5 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 |
---|---|---|
|
@@ -105,7 +105,7 @@ jobs: | |
uses: mozilla-actions/[email protected] | ||
|
||
- name: Import Certificates (macOS) | ||
uses: apple-actions/import-codesign-certs@v2 # only exists as a tag right now | ||
uses: apple-actions/import-codesign-certs@v3 | ||
if: ${{ matrix.name == 'macOS' }} | ||
with: | ||
p12-file-base64: ${{ secrets.DEV_ID_APP_CERT }} | ||
|
@@ -208,7 +208,7 @@ jobs: | |
- name: Codesign with Azure Trusted Signing | ||
if: ${{ matrix.name == 'Windows' }} | ||
uses: azure/[email protected].16 | ||
uses: azure/[email protected].18 | ||
with: | ||
# The Azure Active Directory tenant (directory) ID. | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
|
@@ -223,15 +223,14 @@ jobs: | |
endpoint: ${{ secrets.AZURE_ENDPOINT }} | ||
|
||
# The Code Signing Account name. | ||
code-signing-account-name: ${{ secrets.AZURE_CODE_SIGNING_NAME }} | ||
trusted-signing-account-name: ${{ secrets.AZURE_CODE_SIGNING_NAME }} | ||
|
||
# The Certificate Profile name. | ||
certificate-profile-name: ${{ secrets.AZURE_CERT_PROFILE_NAME }} | ||
|
||
# This signs all exes inside the folder | ||
files-folder: ${{ env.ARTIFACTS_PATH }} | ||
files-folder-filter: exe | ||
file-digest: SHA256 | ||
|
||
- name: Upload Exe (Windows) | ||
if: ${{ matrix.name == 'Windows' }} | ||
|
@@ -264,7 +263,7 @@ jobs: | |
uses: actions/download-artifact@v4 | ||
|
||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
prerelease: true | ||
# download-artifact puts these files in their own dirs... | ||
|