1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-04-08 16:53:58 +02:00

ci: strip release binaries on macOS

We were purportedly doing this already, but actually weren't because of
confusion in the `if` condition.

Closes 
This commit is contained in:
Andrew Gallant 2023-11-21 17:57:14 -05:00
parent ae2a09915f
commit 50b2472438
2 changed files with 3 additions and 1 deletions
.github/workflows
CHANGELOG.md

@ -161,7 +161,7 @@ jobs:
echo "BIN=$bin" >> $GITHUB_ENV
- name: Strip release binary (macos)
if: matrix.os == 'macos'
if: matrix.os == 'macos-latest'
shell: bash
run: strip "$BIN"

@ -75,6 +75,8 @@ Bug fixes:
Fix bug in `-w/--word-regexp` that would result in incorrect match offsets.
* [BUG #2623](https://github.com/BurntSushi/ripgrep/issues/2623):
Fix a number of bugs with the `-w/--word-regexp` flag.
* [BUG #2636](https://github.com/BurntSushi/ripgrep/pull/2636):
Strip release binaries for macOS.
13.0.0 (2021-06-12)