From fa06a3fbe116c5e9808c11905f3968a8d5c77f74 Mon Sep 17 00:00:00 2001 From: Egor Date: Thu, 18 Sep 2025 20:53:02 -0700 Subject: [PATCH] fix linux auto-update required latest file missing from CI artifacts --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index acb400e..423329b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -176,6 +176,9 @@ jobs: gh release upload ${{ steps.tag.outputs.tag }} "$file" --clobber fi done + if [ -f "artifacts/linux-release/latest-linux.yml" ]; then + gh release upload ${{ steps.tag.outputs.tag }} "artifacts/linux-release/latest-linux.yml" --clobber + fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}