From 8d53ca0f9e4684c53420c3355f1630b9c633ac25 Mon Sep 17 00:00:00 2001 From: Isaac Levin Date: Tue, 26 Dec 2023 14:08:56 -0800 Subject: [PATCH] fix --- .github/workflows/Deploy_Desktop.yml | 1 + Build/winget/build.ps1 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Deploy_Desktop.yml b/.github/workflows/Deploy_Desktop.yml index c474c3a3..aff5fe4b 100644 --- a/.github/workflows/Deploy_Desktop.yml +++ b/.github/workflows/Deploy_Desktop.yml @@ -316,6 +316,7 @@ jobs: $appxHash.Hash | Out-File -Encoding 'UTF8' "./ReleaseSigned/PresenceLight.Package_${{ env.VERSION }}.0_x64_x86_ARM64.appxbundle.sha256" shell: pwsh + - name: Create GitHub Release uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 with: diff --git a/Build/winget/build.ps1 b/Build/winget/build.ps1 index 994924e0..3260a04b 100644 --- a/Build/winget/build.ps1 +++ b/Build/winget/build.ps1 @@ -15,7 +15,7 @@ function Get-Hash { [string] $Version ) - $hash = (new-object Net.WebClient).DownloadString("https://github.com/isaacrlevin/presencelight/releases/download/Desktop-v$Version/appx.sha256") + $hash = (new-object Net.WebClient).DownloadString("https://github.com/isaacrlevin/presencelight/releases/download/Desktop-v$Version/PresenceLight.Package_$Version.0_x64_x86_ARM64.appxbundle.sha256") return $hash }