From f7faa076a972e27def1cc70bef2abb196e5e5ffb Mon Sep 17 00:00:00 2001 From: "Marco Antonio J. Costa" Date: Mon, 27 Jul 2026 14:56:13 -0300 Subject: [PATCH] name the application executable when copying to the gamedir every build artifact also carries Ja2Export.exe, so the glob handed mv three paths and it failed with "target 'gamedir/ja2.exe' is not a directory". The assemble job runs on Windows, so the lowercase matrix name matches the uppercase target file. Co-Authored-By: Claude Opus 5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42117004e..466c7c2b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,7 +85,7 @@ jobs: set -eux for APP in ja2 ja2mapeditor ja2ub ja2ubmapeditor do - mv artifacts/${APP}/*.exe gamedir/${APP}.exe + mv artifacts/${APP}/${APP}.exe gamedir/${APP}.exe done - name: Create version information file