diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f149767..90720c0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -87,15 +87,10 @@ jobs: - uses: "actions/checkout@v3" - name: "Download SDL2 package" - run: >- - Invoke-WebRequest - -Uri "https://github.com/libsdl-org/SDL/releases/download/release-2.24.2/SDL2-devel-2.24.2-VC.zip" - -OutFile "C:/Program Files/SDL2-devel-VC.zip" + run: 'Invoke-WebRequest -Uri "https://github.com/libsdl-org/SDL/releases/download/release-2.24.2/SDL2-devel-2.24.2-VC.zip" -OutFile "C:/Program Files/SDL2-devel-VC.zip"' - name: "Install SDL2" - run: >- - Expand-Archive - -LiteralPath "C:/Program Files/SDL2-devel-VC.zip" + run: 'Expand-Archive -LiteralPath "C:/Program Files/SDL2-devel-VC.zip"' - name: "Build" shell: "bash"