mirror of
https://github.com/nushell/nushell
synced 2024-11-16 17:57:57 +00:00
add the ability to strip the debug symbols for smaller binaries on mac and linux
This commit is contained in:
parent
493bc2b1c9
commit
d09e1148b2
1 changed files with 6 additions and 0 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -28,6 +28,9 @@ jobs:
|
|||
command: build
|
||||
args: --release --all --features=extra
|
||||
|
||||
- name: Strip release binary (linux)
|
||||
run: strip "target/${{ matrix.target }}/release/nu*"
|
||||
|
||||
- name: Create output directory
|
||||
run: mkdir output
|
||||
|
||||
|
@ -70,6 +73,9 @@ jobs:
|
|||
command: build
|
||||
args: --release --all --features=extra
|
||||
|
||||
- name: Strip release binary (macos)
|
||||
run: strip "target/${{ matrix.target }}/release/nu*"
|
||||
|
||||
- name: Create output directory
|
||||
run: mkdir output
|
||||
|
||||
|
|
Loading…
Reference in a new issue