Skip to content

Commit

Permalink
ci: strip release binaries on macOS
Browse files Browse the repository at this point in the history
We were purportedly doing this already, but actually weren't because of
confusion in the `if` condition.

Closes #2636
  • Loading branch information
BurntSushi committed Nov 21, 2023
1 parent 288836d commit 33ca5d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 33ca5d6

Please sign in to comment.