From 26c5002888ddfa5ac668b583fe376f3fe73445ff Mon Sep 17 00:00:00 2001 From: Yann Date: Fri, 2 Aug 2024 22:07:03 +0200 Subject: [PATCH] chore: remove unnecessary certificate copy step and move cert to root project --- .github/workflows/build.yml | 6 +----- utils/zed_cert.pfx => zed_cert.pfx | Bin 2 files changed, 1 insertion(+), 5 deletions(-) rename utils/zed_cert.pfx => zed_cert.pfx (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 074b4e8..b8d9f8e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -206,10 +206,6 @@ jobs: Write-Host "Added Resources element to AppxManifest.xml" } - - name: Copy certificate - run: | - Copy-Item -Path "../build-repo/zed_cert.pfx" -Destination "zed/utils/zed_cert.pfx" - - name: List directory contents run: | cd zed @@ -218,7 +214,7 @@ jobs: - name: Sign MSIX package run: | cd zed - $certPath = Join-Path -Path $PWD -ChildPath "utils/zed_cert.pfx" + $certPath = Join-Path -Path $PWD -ChildPath "../zed_cert.pfx" # Path to repository root Write-Host "Certificate path: $certPath" if (Test-Path $certPath) { Write-Host "Certificate file exists." diff --git a/utils/zed_cert.pfx b/zed_cert.pfx similarity index 100% rename from utils/zed_cert.pfx rename to zed_cert.pfx