From 32de19b063b0339c062af646ac6bc6c223baff44 Mon Sep 17 00:00:00 2001 From: Yair <39923744+yaira2@users.noreply.github.com> Date: Thu, 4 Apr 2024 16:56:01 -0400 Subject: [PATCH] GitHub: Fixed code signing endpoint --- .github/workflows/cd-preview.yml | 4 ++-- .github/workflows/cd-stable.yml | 4 ++-- .github/workflows/deploy-preview-legacy.yml | 4 ++-- .github/workflows/deploy-stable-legacy.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cd-preview.yml b/.github/workflows/cd-preview.yml index f3ac13d71cec..958613b8c366 100644 --- a/.github/workflows/cd-preview.yml +++ b/.github/workflows/cd-preview.yml @@ -101,13 +101,13 @@ jobs: $fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema) $fileContent | Set-Content $localFilePath - - name: Sign files with Azure Code Signing + - name: Sign files with Azure Trusted Signing uses: azure/trusted-signing-action@v0.3.16 with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - endpoint: https://wus2.codesigning.azure.net/ + endpoint: https://eus.codesigning.azure.net/ code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }} certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }} files-folder: ${{ env.APPX_PACKAGE_DIR }} diff --git a/.github/workflows/cd-stable.yml b/.github/workflows/cd-stable.yml index 31975dce4ece..88a720915d6b 100644 --- a/.github/workflows/cd-stable.yml +++ b/.github/workflows/cd-stable.yml @@ -101,13 +101,13 @@ jobs: $fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema) $fileContent | Set-Content $localFilePath - - name: Sign files with Azure Code Signing + - name: Sign files with Azure Trusted Signing uses: azure/trusted-signing-action@v0.3.16 with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - endpoint: https://wus2.codesigning.azure.net/ + endpoint: https://eus.codesigning.azure.net/ code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }} certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }} files-folder: ${{ env.APPX_PACKAGE_DIR }} diff --git a/.github/workflows/deploy-preview-legacy.yml b/.github/workflows/deploy-preview-legacy.yml index e6c576dd0b24..cf3c6cc7572b 100644 --- a/.github/workflows/deploy-preview-legacy.yml +++ b/.github/workflows/deploy-preview-legacy.yml @@ -139,13 +139,13 @@ jobs: $fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema) $fileContent | Set-Content $localFilePath - - name: Sign files with Azure Code Signing + - name: Sign files with Azure Trusted Signing uses: azure/trusted-signing-action@v0.3.16 with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - endpoint: https://wus2.codesigning.azure.net/ + endpoint: https://eus.codesigning.azure.net/ code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }} certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }} files-folder: ${{ env.APPX_PACKAGE_DIR }} diff --git a/.github/workflows/deploy-stable-legacy.yml b/.github/workflows/deploy-stable-legacy.yml index 9a045d43a303..64dc136979d9 100644 --- a/.github/workflows/deploy-stable-legacy.yml +++ b/.github/workflows/deploy-stable-legacy.yml @@ -139,13 +139,13 @@ jobs: $fileContent = $fileContent.Replace("http://schemas.microsoft.com/appx/appinstaller/2017/2", $newSchema) $fileContent | Set-Content $localFilePath - - name: Sign files with Azure Code Signing + - name: Sign files with Azure Trusted Signing uses: azure/trusted-signing-action@v0.3.16 with: azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} azure-client-secret: ${{ secrets.AZURE_CLIENT_SECRET }} - endpoint: https://wus2.codesigning.azure.net/ + endpoint: https://eus.codesigning.azure.net/ code-signing-account-name: ${{ secrets.SIGNING_ACCOUNT_NAME }} certificate-profile-name: ${{ secrets.SIGNING_PROFILE_NAME }} files-folder: ${{ env.APPX_PACKAGE_DIR }}