ci: strip release binaries on macOS

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

Closes #2636
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

View File

@@ -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"