From cffc4cce0707bddd198f9e55925522edd8b6911e Mon Sep 17 00:00:00 2001 From: Frog Date: Wed, 19 Nov 2025 22:04:24 -0800 Subject: [PATCH] Update ci-builds.yml Bug Fix: I forgot to adjust the Rename-Item PS command to rename the EXE before packaging. --- .github/workflows/ci-builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-builds.yml b/.github/workflows/ci-builds.yml index 0034e09..f320668 100644 --- a/.github/workflows/ci-builds.yml +++ b/.github/workflows/ci-builds.yml @@ -37,7 +37,7 @@ jobs: - name: Rename EXE with short commit SHA run: | - Rename-Item -Path ./publish/CreamInstaller.exe -NewName "CreamInstaller-$env:shortSha.exe" + Rename-Item -Path ./publish/CreamInstaller.exe -NewName "CreamInstaller-CI-$env:shortSha.exe" shell: pwsh - name: Upload artifact