From 6b3149fbceb1758dee312fcccd70de1532e8b63d Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Fri, 29 Nov 2024 21:08:05 -0600 Subject: [PATCH] Fix mkdir usage and output directory in ci.yml --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2b5537e..fc3de9c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,18 +139,19 @@ jobs: conan config install ` ./source/tools/conan/profiles/${{ matrix.conan_profile }} ` -tf profiles - mkdir -p build + mkdir build cd build + mkdir conan conan install ../source/ ` --remote conancenter ` --build missing ` --profile:all ${{ matrix.conan_profile }} ` + --output-folder ./conan/ ` ${{ matrix.conan_package_manager }} - name: Build Supercell Wx shell: pwsh run: | - mkdir -p build cd build cmake ../source/ ` -G Ninja `