From 43433dcf4c6d1761bf476ddcf74f1d0b83c0b0a2 Mon Sep 17 00:00:00 2001 From: Sam Schumacher <38103916+HerrSammyDE@users.noreply.github.com> Date: Tue, 30 Jun 2026 09:33:00 +0200 Subject: [PATCH] ci(release): upload only the built wings binaries, not all of dist/* The release step globbed dist/*, which also picked up the committed dist/wings_test binary and attached it to every GitHub release as a stray 'wings_test' asset. Upload the two real build outputs explicitly so releases no longer leak that artifact. --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 59044386b..94d2e95e8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -53,4 +53,5 @@ jobs: prerelease: ${{ contains(github.ref_name, 'rc') || contains(github.ref_name, 'beta') || contains(github.ref_name, 'alpha') }} body_path: ./RELEASE_CHANGELOG files: | - dist/* + dist/wings_linux_amd64 + dist/wings_linux_arm64