diff --git a/.github/workflows/update-cache.yml b/.github/workflows/update-cache.yml index 72c923a..a9fd222 100644 --- a/.github/workflows/update-cache.yml +++ b/.github/workflows/update-cache.yml @@ -20,6 +20,20 @@ jobs: with: repository: 'bevyengine/bevy' + - name: Checkout patches + uses: actions/checkout@v4 + with: + path: 'runner-patches' + + - name: Apply patches + shell: pwsh + run: | + Get-ChildItem "runner-patches/patches" -Filter *.patch | + Foreach-Object { + Write-Output "Processing $($_.FullName)" + git apply --ignore-whitespace $($_.FullName) + } + - name: Setup Rust uses: dtolnay/rust-toolchain@stable