From 008acf042273ad7ba0f02661aedbdf6cb283d93f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Mon, 23 Aug 2021 19:00:17 +0200 Subject: [PATCH] Update msys2-build.yml --- .github/workflows/msys2-build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/msys2-build.yml b/.github/workflows/msys2-build.yml index f9df527ee..3566b004b 100644 --- a/.github/workflows/msys2-build.yml +++ b/.github/workflows/msys2-build.yml @@ -57,12 +57,12 @@ jobs: # Update xmake repository (in order to have the file that will be cached) - name: Update xmake repository - run: xmake.exe repo --update + run: xmake repo --update # Fetch xmake dephash - name: Retrieve dependencies hash id: dep_hash - run: echo "::set-output name=hash::$(xmake.exe l utils.ci.packageskey)" + run: echo "::set-output name=hash::$(xmake l utils.ci.packageskey)" # Cache xmake dependencies - name: Retrieve cached xmake dependencies @@ -73,15 +73,15 @@ jobs: # Setup compilation mode and install project dependencies - name: Configure xmake and install dependencies - run: xmake.exe config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --yes --verbose + run: xmake config --arch=${{ matrix.arch }} --mode=${{ matrix.mode }} --yes --verbose # Build the engine - name: Build Nazara - run: xmake.exe + run: xmake # Install the result files - name: Install Nazara - run: xmake.exe install -vo package + run: xmake install -vo package # Upload artifacts - uses: actions/upload-artifact@v2