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

This commit is contained in:
lone-cloud 2025-09-18 20:53:02 -07:00
parent dce2b5acf8
commit 75f44eb7e0

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 }}