From a690bc83f1c02f4a99e611e7152c05c94658c10e Mon Sep 17 00:00:00 2001 From: Stephen Nneji Date: Tue, 3 Feb 2026 13:29:47 +0000 Subject: [PATCH] fix release name --- .github/workflows/runTests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index 0902c8465..a49035037 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -84,8 +84,10 @@ jobs: merge-multiple: true - name: Create nightly release run: | + mv Linux-X64.zip Linux.zip + mv Windows-X64.zip Windows.zip output=$(gh release delete nightly --cleanup-tag --yes --repo ${{ github.repository }} 2>&1) || [[ "${output}" == "release not found" ]] - gh release create nightly Windows-X64.zip Linux-X64.zip macOS-X64.zip macOS-ARM64.zip --prerelease --title "Nightly Build" --latest=false --repo ${{ github.repository }} + gh release create nightly Windows.zip Linux.zip macOS-X64.zip macOS-ARM64.zip --prerelease --title "Nightly Build" --latest=false --repo ${{ github.repository }} env: GH_TOKEN: ${{ github.token }}