mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
fix: update certificate path in workflow and remove temporary key file
This commit is contained in:
2
.github/workflows/dotnet-desktop.yml
vendored
2
.github/workflows/dotnet-desktop.yml
vendored
@@ -54,7 +54,7 @@ jobs:
|
||||
- name: Decode the pfx
|
||||
run: |
|
||||
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.BASE64_ENCODED_PFX }}")
|
||||
$certificatePath = "GitHubActionsWorkflow.pfx"
|
||||
$certificatePath = Join-Path -Path $PWD -ChildPath "GitHubActionsWorkflow.pfx"
|
||||
[IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
|
||||
|
||||
# Create the app package by building and packaging the project
|
||||
|
||||
Reference in New Issue
Block a user