fix linux auto-update required latest file missing from CI artifacts

This commit is contained in:
Egor 2025-09-18 20:53:02 -07:00
parent fdc2ef81c3
commit fa06a3fbe1

View file

@ -176,6 +176,9 @@ jobs:
gh release upload ${{ steps.tag.outputs.tag }} "$file" --clobber gh release upload ${{ steps.tag.outputs.tag }} "$file" --clobber
fi fi
done 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: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}