Skip to content

Commit e8a1ce3

Browse files
committed
feat(workflows): also strip the final executable
1 parent fd9b43a commit e8a1ce3

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/arm64.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
shell: bash
2828
working-directory: ${{ github.workspace }}
2929

30+
- name: Strip executable
31+
run: strip diamond
32+
shell: bash
33+
working-directory: ${{ github.workspace }}
34+
3035
- uses: actions/upload-artifact@v2
3136
with:
3237
name: diamond-arm64

.github/workflows/x86_64.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
shell: bash
5252
working-directory: ${{ github.workspace }}
5353

54+
- name: Strip executable
55+
run: strip diamond
56+
shell: bash
57+
working-directory: ${{ github.workspace }}
58+
5459
- uses: actions/upload-artifact@v2
5560
with:
5661
name: diamond-${{ runner.os }}

0 commit comments

Comments
 (0)