summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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