Skip to content

Commit 32de19b

Browse files
committed
GitHub: Fixed code signing endpoint
1 parent f232cc1 commit 32de19b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/cd-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ jobs:
101101
$fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema)
102102
$fileContent | Set-Content $localFilePath
103103
104-
- name: Sign files with Azure Code Signing
104+
- name: Sign files with Azure Trusted Signing
105105
uses: azure/[email protected]
106106
with:
107107
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
108108
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
109109
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
110-
endpoint: https://wus2.codesigning.azure.net/
110+
endpoint: https://eus.codesigning.azure.net/
111111
code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }}
112112
certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }}
113113
files-folder: ${{ env.APPX_PACKAGE_DIR }}

.github/workflows/cd-stable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ jobs:
101101
$fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema)
102102
$fileContent | Set-Content $localFilePath
103103
104-
- name: Sign files with Azure Code Signing
104+
- name: Sign files with Azure Trusted Signing
105105
uses: azure/[email protected]
106106
with:
107107
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
108108
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
109109
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
110-
endpoint: https://wus2.codesigning.azure.net/
110+
endpoint: https://eus.codesigning.azure.net/
111111
code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }}
112112
certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }}
113113
files-folder: ${{ env.APPX_PACKAGE_DIR }}

.github/workflows/deploy-preview-legacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ jobs:
139139
$fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema)
140140
$fileContent | Set-Content $localFilePath
141141
142-
- name: Sign files with Azure Code Signing
142+
- name: Sign files with Azure Trusted Signing
143143
uses: azure/[email protected]
144144
with:
145145
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
146146
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
147147
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
148-
endpoint: https://wus2.codesigning.azure.net/
148+
endpoint: https://eus.codesigning.azure.net/
149149
code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }}
150150
certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }}
151151
files-folder: ${{ env.APPX_PACKAGE_DIR }}

.github/workflows/deploy-stable-legacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ jobs:
139139
$fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema)
140140
$fileContent | Set-Content $localFilePath
141141
142-
- name: Sign files with Azure Code Signing
142+
- name: Sign files with Azure Trusted Signing
143143
uses: azure/[email protected]
144144
with:
145145
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
146146
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
147147
azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }}
148-
endpoint: https://wus2.codesigning.azure.net/
148+
endpoint: https://eus.codesigning.azure.net/
149149
code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }}
150150
certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }}
151151
files-folder: ${{ env.APPX_PACKAGE_DIR }}

0 commit comments

Comments
 (0)