From 7104911236ca4d22fb868adcea89224d2c2f27a7 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Jan 2020 16:55:12 +0100 Subject: [PATCH] Update ci_src_examples_win.yml --- .github/workflows/ci_src_examples_win.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_src_examples_win.yml b/.github/workflows/ci_src_examples_win.yml index 33d0c1b4e..a6b115bc4 100644 --- a/.github/workflows/ci_src_examples_win.yml +++ b/.github/workflows/ci_src_examples_win.yml @@ -9,8 +9,8 @@ jobs: - uses: actions/checkout@v1 - name: Enable MSVC Developer Command Prompt uses: ilammy/msvc-dev-cmd@v1.0.0 - - run: mkdir build - - run: cd build + - name: Setup Environment + run: mkdir build && cd build - name: Setup CMake Project run: cmake -G Visual Studio 14 2015 -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON .. - name: Build raylib Source & Examples