summaryrefslogtreecommitdiff
path: root/.github/workflows/package.yml
diff options
context:
space:
mode:
authorReiko Asakura2021-02-20 17:26:48 -0500
committerReiko Asakura2021-02-20 17:26:48 -0500
commitbf8485c5fb2a06d2858a4c3c5e643b5d8d2e1b36 (patch)
tree68f341e3f5f30db7e12e7eec47ab179a84af58af /.github/workflows/package.yml
parentFix inconsistent tabs (diff)
downloadvds-libraries-bf8485c5fb2a06d2858a4c3c5e643b5d8d2e1b36.tar.gz
Build with Release configuration when packagingrelease/0.1.1
Diffstat (limited to '')
-rw-r--r--.github/workflows/package.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml
index df2079c..0b2f358 100644
--- a/.github/workflows/package.yml
+++ b/.github/workflows/package.yml
@@ -64,7 +64,7 @@ jobs:
Get-ChildItem -Recurse -File -Path include
| ForEach-Object {(Get-Content -Raw $_.FullName) -replace "$name","$name ${{ env.version }}"
| Set-Content -Encoding utf8NoBOM -NoNewLine $_.FullName}
- cmake . -D CMAKE_INSTALL_PREFIX=/sdk/target
+ cmake . -D CMAKE_INSTALL_PREFIX=/sdk/target -D CMAKE_BUILD_TYPE=Release
if ($LastExitCode -ne 0) { exit $LastExitCode }
make install
if ($LastExitCode -ne 0) { exit $LastExitCode }