From 7ba6bcedcd80f04fb1c5834adcad847b027f1f13 Mon Sep 17 00:00:00 2001 From: ShenMian Date: Fri, 26 Apr 2024 16:42:35 +0800 Subject: [PATCH] ci: fix GitHub action --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b3773e5..3136f7c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,7 +50,9 @@ jobs: overwrite: true - name: Create installer - run: dotnet build -p:Version=${{ env.TAG }} -c Release build/windows/installer/Installer.wixproj --output installer + run: | + set VERSION= + dotnet build -p:Version=${{ env.TAG }} -c Release build/windows/installer/Installer.wixproj --output installer - name: Upload artifact to release uses: svenstaro/upload-release-action@v2