diff options
author | Collided Scope <75840710+collidedscope@users.noreply.github.com> | 2021-01-02 20:19:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 02:19:03 +0100 |
commit | 84d08358b7c4af1d92c7d47edc2c7ae9594ffae4 (patch) | |
tree | e99cc90ec7f3d1a734cbd8cb6a061f959862125a | |
parent | ebcdcad0b724955364f2924e80b334f8ca5f46e2 (diff) | |
download | rneovim-84d08358b7c4af1d92c7d47edc2c7ae9594ffae4.tar.gz rneovim-84d08358b7c4af1d92c7d47edc2c7ae9594ffae4.tar.bz2 rneovim-84d08358b7c4af1d92c7d47edc2c7ae9594ffae4.zip |
ci: Fix typo in release.yml that prevents optimized nightly build (#13671)
Assuming the `CMAKE_BUILD_TYPE` directive is case-sensitive, this *actually* prevents the nightly build from being optimized. Even if it doesn't, the typo causes `:checkhealth` to issue a dummy warning in the Performance section.
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7587f62e59..506174971a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - name: Build release id: build run: | - make CMAKE_BUILD_TYPE=RelWithDebinfo CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH=" + make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH=" printf '::set-output name=version::%s\n' "$(./build/bin/nvim --version | head -n 3 | sed -z 's/\n/%0A/g')" printf '::set-output name=release::%s\n' "$(./build/bin/nvim --version | head -n 1)" make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-linux64" install |