From e1dbabd560dc3ceef3b139b0fa26918cf5794881 Mon Sep 17 00:00:00 2001 From: Justin Shannon Date: Tue, 11 Jan 2022 21:23:43 -0800 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b2e6022..0e2fcdf0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -384,7 +384,7 @@ jobs: cmake --build . --config ${{ env.BUILD_TYPE }} - name: Extract debug symbols - working-directory: ${{ env.CLIENT_DIR }}/build/mac_x64 + working-directory: ${{ env.PLUGIN_DIR }}/build/mac_x64 run: | dsymutil xPilot.xpl -o xPilot.dSYM @@ -392,7 +392,7 @@ jobs: run: | mkdir -p ${{ github.workspace }}/xPilot/mac_x64 cp ${{ env.PLUGIN_DIR }}/build/mac_x64/xPilot.xpl ${{ github.workspace }}/xPilot/mac_x64 - cp ${{ env.PLUGIN_DIR }}/build/mac_x64/xPilot.dSYM ${{ github.workspace }}/xPilot/mac_x64 + cp -R ${{ env.PLUGIN_DIR }}/build/mac_x64/xPilot.dSYM ${{ github.workspace }}/xPilot/mac_x64 cp -R ${{ github.workspace }}/plugin/Resources ${{ github.workspace }}/xPilot/ ### Build Client ###