From a4ce103d091185471bcd629f6dfa6d1ab97829eb Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 30 Jun 2023 02:47:34 +0200 Subject: [PATCH] use ubuntu for compare --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c035140..a819c2a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -69,7 +69,7 @@ jobs: compare: needs: build - runs-on: windows-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@master @@ -88,8 +88,8 @@ jobs: - name: Download original island binares if: ${{ !steps.cache-original-binaries.outputs.cache-hit }} run: | - C:\msys64\usr\bin\wget.exe https://legoisland.org/download/ISLE.EXE --directory-prefix=legobin - C:\msys64\usr\bin\wget.exe https://legoisland.org/download/LEGO1.DLL --directory-prefix=legobin + wget https://legoisland.org/download/ISLE.EXE --directory-prefix=legobin + wget https://legoisland.org/download/LEGO1.DLL --directory-prefix=legobin - name: Cache original binaries if: ${{ !steps.cache-original-binaries.outputs.cache-hit }}