From e7b675e4e1acc7ba13b16379e92a707472fce587 Mon Sep 17 00:00:00 2001 From: Tsubasa6848 Date: Fri, 3 Mar 2023 19:53:29 +0800 Subject: [PATCH] MinSizeRel Build --- .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 45f90eb..3306b4c 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -3,8 +3,8 @@ name: Build on: [push] env: - # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) - BUILD_TYPE: Release + # Customize the CMake build type here (MinSizeRel, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: MinSizeRel jobs: build: @@ -46,8 +46,8 @@ jobs: - name: Copy Out Files working-directory: ${{env.GITHUB_WORKSPACE}} run: | - cp D:/a/Cleaner/Cleaner/build/Release/*.dll D:/out/plugins - cp D:/a/Cleaner/Cleaner/build/Release/*.pdb D:/out/plugins + cp D:/a/Cleaner/Cleaner/build/MinSizeRel/*.dll D:/out/plugins + cp D:/a/Cleaner/Cleaner/build/MinSizeRel/*.pdb D:/out/plugins shell: bash - name: Upload plugins