From cfecd998581901b1ccc4882291a12f7f4dc6b362 Mon Sep 17 00:00:00 2001 From: EinTim23 Date: Mon, 12 May 2025 21:48:44 +0200 Subject: [PATCH] set specific target for github actions --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e21b100..e15c0b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release - name: Build the project - run: cmake --build build --config Release --parallel $(nproc) + run: cmake --build build --config Release --target PlayerLink --parallel $(nproc) - name: Download linuxdeploy run: | @@ -85,7 +85,7 @@ jobs: run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release - name: Build the project - run: cmake --build build --config Release + run: cmake --build build --config Release --target PlayerLink - name: Upload Windows artifact uses: actions/upload-artifact@v4 @@ -112,7 +112,7 @@ jobs: run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release -A ARM64 - name: Build the project for ARM64 - run: cmake --build build --config Release + run: cmake --build build --config Release --target PlayerLink - name: Rename ARM64 executable run: Rename-Item build\Release\PlayerLink.exe PlayerLink-arm64.exe @@ -142,7 +142,7 @@ jobs: run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release - name: Build the project - run: cmake --build build --config Release --parallel $(sysctl -n hw.physicalcpu) + run: cmake --build build --config Release --target PlayerLink --parallel $(sysctl -n hw.physicalcpu) - name: Create DMG package run: |