summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-10-25 11:02:18 +0200
committerGitHub <noreply@github.com>2022-10-25 11:02:18 +0200
commitf23ea515d421ba1049e261030471200c14bb0633 (patch)
tree80cb4433fe86a13c7ac01f0cc0f96be049a96667 /.github
parent5cc5995912705098332f07904ae80e76425f8db8 (diff)
chore(ci): do not strip binary
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 84db141a7..bf7bc64a7 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -85,10 +85,10 @@ jobs:
- name: Build release binary
run: cargo make ci-build-release ${{ matrix.target }}
- # there currently seems to be an issue with strip in aarch64, TODO: investigate this
- - name: Strip release binary
- if: runner.target != 'aarch64-unknown-linux-musl' && runner.target != 'aarch64-apple-darwin'
- run: strip "target/${{ matrix.target }}/release/zellij"
+ # this breaks on aarch64 and this if conditional isn't working for some reason: TODO: investigate
+ #- name: Strip release binary
+ # if: runner.target != 'aarch64-unknown-linux-musl' && runner.target != 'aarch64-apple-darwin'
+ # run: strip "target/${{ matrix.target }}/release/zellij"
- name: Create checksum
id: make-checksum