From 98fc2a1a9da6d2b3a5d9b138889eee07e989737f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 22 Aug 2026 15:43:56 +0000 Subject: [PATCH] Fix publish job: use forward slash in release files glob pattern Co-authored-by: mzagozda <467608+mzagozda@users.noreply.github.com> --- .github/workflows/build-installer.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 7dc110b..46fedb2 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -250,7 +250,9 @@ jobs: # Keep the release-managed major separate from GitHub's automatic run number. tag_name: 6.0.${{ github.run_number }} name: Open Salamander 6.0.${{ github.run_number }} - files: Installer\Output\OpenSalamander_6.0.${{ github.run_number }}.exe + # Use forward slashes: the softprops/action-gh-release glob library treats + # backslashes as escape characters rather than path separators on Windows. + files: Installer/Output/OpenSalamander_6.0.${{ github.run_number }}.exe draft: false prerelease: false env: