Commit e6fa8f6
authored
fix: restore trailing wildcard in artifact upload glob for Windows .exe binaries (#123)
The Upload artifacts step in build.yml uses glob patterns to find built
binaries. Linux and macOS produce plain files (e.g.
clang-format-13_linux-amd64), but Windows appends .exe. The patterns
originally ended with * (e.g. clang-*-${{ env.suffix }}*) to cover both
cases, but commit ae20618 accidentally dropped the trailing * when
adding the SHA512SUMS entry.
Without the trailing *, clang-*-13_windows-amd64 fails to match
clang-format-13_windows-amd64.exe, so no Windows binaries are uploaded
as build artifacts and consequently none appear in the GitHub Release.
This caused the 2026.06.29-ae206185 release to ship 374 assets (Linux
and macOS only) with zero Windows binaries.1 parent 78520d6 commit e6fa8f6
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
83 | | - | |
84 | | - | |
| 83 | + | |
| 84 | + | |
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
| |||
0 commit comments