diff options
author | Reiko Asakura | 2021-02-20 17:26:48 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-02-20 17:26:48 -0500 |
commit | bf8485c5fb2a06d2858a4c3c5e643b5d8d2e1b36 (patch) | |
tree | 68f341e3f5f30db7e12e7eec47ab179a84af58af /.github/workflows/package.yml | |
parent | Fix inconsistent tabs (diff) | |
download | vds-libraries-bf8485c5fb2a06d2858a4c3c5e643b5d8d2e1b36.tar.gz |
Build with Release configuration when packagingrelease/0.1.1
Diffstat (limited to '.github/workflows/package.yml')
-rw-r--r-- | .github/workflows/package.yml | 2 |
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 } |