From 26929ab31e50b3f1355df961a449172d4270132f Mon Sep 17 00:00:00 2001 From: Jaex Date: Sun, 1 Jan 2023 14:34:34 +0300 Subject: [PATCH] Use env.APP_VERSION --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17bb67b98..b4f875790 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -197,12 +197,12 @@ jobs: draft: false prerelease: false files: | - Output/ShareX-*-setup.exe - Output/ShareX-*-portable.zip - Output/ShareX-*-debug.zip - Output/ShareX-*-Steam.zip - Output/ShareX-*.appx - Output/ShareX-*-debug.appx + Output/ShareX-${{ env.APP_VERSION }}-setup.exe + Output/ShareX-${{ env.APP_VERSION }}-portable.zip + Output/ShareX-${{ env.APP_VERSION }}-debug.zip + Output/ShareX-${{ env.APP_VERSION }}-Steam.zip + Output/ShareX-${{ env.APP_VERSION }}.appx + Output/ShareX-${{ env.APP_VERSION }}-debug.appx - name: Release (Stable) env: @@ -218,5 +218,5 @@ jobs: draft: false prerelease: true files: | - Output/ShareX-*-setup.exe - Output/ShareX-*-portable.zip \ No newline at end of file + Output/ShareX-${{ env.APP_VERSION }}-setup.exe + Output/ShareX-${{ env.APP_VERSION }}-portable.zip \ No newline at end of file