diff options
| author | James McCoy <jamessan@jamessan.com> | 2021-10-30 16:07:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-30 16:07:31 -0400 |
| commit | e501aac7ff89f0ec12bf54123269d40397208820 (patch) | |
| tree | b5f87298cc958343cfa7c692357dfc6c7b604ade /ci | |
| parent | 2230b578d1d36728d156f82fb0e1a44c1f810b8c (diff) | |
| parent | c84b86fe3dce633b551dc395d2c07ff40e6fb42c (diff) | |
| download | rneovim-e501aac7ff89f0ec12bf54123269d40397208820.tar.gz rneovim-e501aac7ff89f0ec12bf54123269d40397208820.tar.bz2 rneovim-e501aac7ff89f0ec12bf54123269d40397208820.zip | |
Merge pull request #16180 from jamessan/release-workflow
Refactor release workflow to use gh instead of a third-party action
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/build.ps1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 8876ac31ef..a8b67c485b 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -170,6 +170,9 @@ if (-not $NoTests) { } } +# Ensure choco's cpack is not in PATH otherwise, it conflicts with CMake's +Remove-Item -Path $env:ChocolateyInstall\bin\cpack.exe -Force + # Build artifacts cpack -G ZIP -C RelWithDebInfo if ($env:APPVEYOR_REPO_TAG_NAME -ne $null) { |