From 3f0e2e0e290b6e3a2234ffe7356bd17b819521a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Tue, 7 Apr 2026 20:17:00 +0900 Subject: [PATCH 1/3] ci(release): uniformize remaining jetsocat artifact names Rename macOS universal binary and Windows PDB files to follow the same naming convention introduced in #1526 (no version, lowercase, hyphens). --- .github/workflows/release.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af53c1115..eabe4aa79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -380,7 +380,7 @@ jobs: @{ OS = "linux"; Arch = "x86_64"; Extension = "" }, @{ OS = "linux"; Arch = "arm64"; Extension = "" }, @{ OS = "macos"; Arch = "x86_64"; Extension = "" }, - @{ OS = "macos"; Arch = "arm64"; Extension = "" } + @{ OS = "macos"; Arch = "arm64"; Extension = "" }, ) foreach ($Platform in $Platforms) { @@ -418,6 +418,17 @@ jobs: Write-Warning "Could not find binary for $OS $Arch" } } + + # Rename macOS universal binary to follow the naming convention (without version). + Get-ChildItem -Recurse -Filter "jetsocat_*_${Version}_universal" -File | ForEach-Object { + Rename-Item -Path $_.FullName -NewName "jetsocat-macos-universal" + } + + # Rename Windows PDB files to follow the naming convention (without version). + Get-ChildItem -Recurse -Filter "jetsocat_Windows_${Version}_*.pdb" -File | ForEach-Object { + $Arch = $_.BaseName -replace "jetsocat_Windows_${Version}_", "" + Rename-Item -Path $_.FullName -NewName "jetsocat-windows-$Arch.pdb" + } shell: pwsh - name: Create GitHub release From 0705b208e54df324c21f45ea17d71adf9940c897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Tue, 7 Apr 2026 22:20:55 +0900 Subject: [PATCH 2/3] . --- .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 eabe4aa79..f316f9466 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -380,7 +380,7 @@ jobs: @{ OS = "linux"; Arch = "x86_64"; Extension = "" }, @{ OS = "linux"; Arch = "arm64"; Extension = "" }, @{ OS = "macos"; Arch = "x86_64"; Extension = "" }, - @{ OS = "macos"; Arch = "arm64"; Extension = "" }, + @{ OS = "macos"; Arch = "arm64"; Extension = "" } ) foreach ($Platform in $Platforms) { From 2e18e0d70b8e66795fb190e88184086b537c9528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Tue, 7 Apr 2026 22:27:29 +0900 Subject: [PATCH 3/3] . --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f316f9466..4cd3562a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -367,8 +367,6 @@ jobs: - name: Create jetsocat ZIP files for winget run: | - Set-PSDebug -Trace 1 - $Version = "${{ needs.preflight.outputs.version }}" $ZipFolder = "jetsocat-zips" New-Item -ItemType Directory -Path $ZipFolder -Force