From 303da19f4870b2c67eb4985e424e602219d7afc2 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 26 May 2022 14:43:38 +0200 Subject: [PATCH] add -t to linux workflow --- .github/workflows/cmake-linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-linux.yml b/.github/workflows/cmake-linux.yml index 4de77a6..bb00d58 100644 --- a/.github/workflows/cmake-linux.yml +++ b/.github/workflows/cmake-linux.yml @@ -35,12 +35,12 @@ jobs: - name: Build Server working-directory: ${{github.workspace}}/build-linux shell: bash - run: cmake --build . --config $BUILD_TYPE BeamMP-Server + run: cmake --build . --config $BUILD_TYPE -t BeamMP-Server - name: Build Tests working-directory: ${{github.workspace}}/build-linux shell: bash - run: cmake --build . --config $BUILD_TYPE BeamMP-Server-tests + run: cmake --build . --config $BUILD_TYPE -t BeamMP-Server-tests - name: Archive server artifact uses: actions/upload-artifact@v2