From a76f0ab233f47b1e2e95286aefb04c68feef235e Mon Sep 17 00:00:00 2001 From: Kuzz007 Date: Sat, 25 Jul 2026 17:08:25 +0300 Subject: [PATCH] fix(ci): drop the now-impossible .zip glob from the dev-latest upload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removing build-windows (previous commit) means dev-artifacts/*.zip never matches anything — gh release upload treats an unmatched glob as fatal, so every dev-latest publish since has failed outright (verified: this run's publish-dev job errored "no matches found for `dev-artifacts/*.zip`" on all 5 retries). Only the *.tar.gz glob remains. Also manually deleted the stale x-ui-windows-amd64.zip asset from the current dev-latest release — it would never be refreshed again otherwise, and silently going stale forever is worse than not being there. Co-Authored-By: Claude Sonnet 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 cadf16784..68da75917 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -266,4 +266,4 @@ jobs: --target "${COMMIT}" --title "Dev build ${short}" --notes "${notes}" fi - retry gh release upload dev-latest dev-artifacts/*.tar.gz dev-artifacts/*.zip --clobber + retry gh release upload dev-latest dev-artifacts/*.tar.gz --clobber