From 45ef0fcd266e84aa4b9e4afd64ae9b66814075ee Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:47:42 -0700 Subject: [PATCH] Update artifact handling in Windows build workflow --- .github/workflows/windows-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 06f325b1..f65e8776 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -93,7 +93,7 @@ jobs: - name: Preparing Artifacts run: | - move ..\zoitechat-build\${{ matrix.platform }}\rel\zoitechat*.exe .\ + move ..\zoitechat-build\${{ matrix.platform }}\ZoiteChat-*.exe .\ move ..\zoitechat-build .\ shell: cmd @@ -102,7 +102,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Installer ${{ matrix.arch }} - path: zoitechat*.exe + path: ZoiteChat-*.exe - name: Attest Installer (Artifact Attestation) if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}