We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036122d commit b365aa7Copy full SHA for b365aa7
.github/workflows/release.yml
@@ -67,7 +67,8 @@ jobs:
67
run: cargo bundle --release
68
if: matrix.os == 'macOS-latest'
69
70
- - name: Strip Application
+ - name: Strip Gui
71
+ working-directory: ./linetest-gui
72
run: cargo strip
73
if: matrix.os != 'windows-latest'
74
@@ -112,11 +113,15 @@ jobs:
112
113
asset_name: linetest.exe
114
asset_content_type: application/zip
115
-
116
- name: Build Cli
117
working-directory: ./linetest-cli
118
run: cargo build --release
119
120
+ - name: Strip cli
121
+ working-directory: ./linetest-cli
122
+ run: cargo strip
123
+ if: matrix.os != 'windows-latest'
124
+
125
- name: Upload Linux Cli
126
if: matrix.os == 'ubuntu-latest'
127
id: upload-release-asset-lin-cli
0 commit comments