summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarpenter, Adam (CORP) <Adam.Carpenter@adp.com>2021-10-12 16:43:11 -0400
committerCarpenter, Adam (CORP) <Adam.Carpenter@adp.com>2021-10-12 16:43:11 -0400
commit72e94183fba163b8be72709964c138609976c428 (patch)
treed17f739d20ba51979fc0bc90afba7e917936a33b
parentf41063d899116a6de5a3d005d37b0b007fba6f7f (diff)
downloadaltruistic-angelshark-72e94183fba163b8be72709964c138609976c428.tar.xz
altruistic-angelshark-72e94183fba163b8be72709964c138609976c428.zip
ci: correct stripping binaries on nix
-rw-r--r--.github/workflows/publish.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 9ae5ca8..b95f4e2 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -60,7 +60,9 @@ jobs:
- name: Strip binaries
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
- run: strip target/${{ matrix.target }}/release/angelshark*
+ run:
+ strip target/${{ matrix.target }}/release/angelsharkcli && strip
+ target/${{ matrix.target }}/release/angelsharkd
- name: Upload angelsharkcli nix binaries to release
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'