From 7bb92972d1d8cbc154ae4794eb74ba734b2e24e3 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 20 Aug 2020 20:53:32 +0200 Subject: [PATCH] Update windows.yml --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 69f2c09a..c40f97d9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -62,9 +62,9 @@ jobs: - name: Build Library (MinGW-w64) run: | cd src - ${{ matrix.ARCH }}-w64-mingw32-gcc.exe -v - ${{ matrix.COMPILER_PATH }}/windres.exe -h set PATH=%PATH%;${{ matrix.COMPILER_PATH }} + ${{ matrix.ARCH }}-w64-mingw32-gcc.exe --version + ${{ matrix.COMPILER_PATH }}/windres.exe --version make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=STATIC RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" ${{ matrix.COMPILER_PATH }}/windres.exe -i raylib.dll.rc -o raylib.dll.rc.data -O coff --target=${{ matrix.WINDRES_ARCH }} make PLATFORM=PLATFORM_DESKTOP CC=${{ matrix.ARCH }}-w64-mingw32-gcc.exe RAYLIB_LIBTYPE=SHARED RAYLIB_RELEASE_PATH="../build/${{ env.RELEASE_NAME }}/lib" -B