Skip to content

Commit

Permalink
chore: remove unnecessary certificate copy step and move cert to root…
Browse files Browse the repository at this point in the history
… project
  • Loading branch information
yannouuuu committed Aug 2, 2024
1 parent c88b823 commit 26c5002
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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."
Expand Down
File renamed without changes.

0 comments on commit 26c5002

Please sign in to comment.