@@ -158,7 +158,9 @@ jobs:
158
158
- name : Strip release binary (linux and macos)
159
159
if : matrix.build == 'linux' || matrix.build == 'macos'
160
160
run : |
161
- strip "target/${{ matrix.target }}/release/rga" "target/${{ matrix.target }}/release/rga-preproc"
161
+ strip "target/${{ matrix.target }}/release/rga" \
162
+ "target/${{ matrix.target }}/release/rga-preproc" \
163
+ "target/${{ matrix.target }}/release/rga-fzf"
162
164
163
165
- name : Strip release binary (arm)
164
166
if : matrix.build == 'linux-arm'
@@ -168,7 +170,8 @@ jobs:
168
170
rustembedded/cross:arm-unknown-linux-gnueabihf \
169
171
arm-linux-gnueabihf-strip \
170
172
/target/arm-unknown-linux-gnueabihf/release/rga \
171
- /target/arm-unknown-linux-gnueabihf/release/rga-preproc
173
+ /target/arm-unknown-linux-gnueabihf/release/rga-preproc \
174
+ /target/arm-unknown-linux-gnueabihf/release/rga-fzf
172
175
173
176
- name : Build archive
174
177
shell : bash
@@ -182,11 +185,13 @@ jobs:
182
185
if [ "${{ matrix.os }}" = "windows-2019" ]; then
183
186
cp "target/${{ matrix.target }}/release/rga.exe" "$staging/"
184
187
cp "target/${{ matrix.target }}/release/rga-preproc.exe" "$staging/"
188
+ cp "target/${{ matrix.target }}/release/rga-fzf.exe" "$staging/"
185
189
7z a "$staging.zip" "$staging"
186
190
echo "ASSET=$staging.zip" >> $GITHUB_ENV
187
191
else
188
192
cp "target/${{ matrix.target }}/release/rga" "$staging/"
189
193
cp "target/${{ matrix.target }}/release/rga-preproc" "$staging/"
194
+ cp "target/${{ matrix.target }}/release/rga-fzf" "$staging/"
190
195
tar czf "$staging.tar.gz" "$staging"
191
196
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
192
197
fi
0 commit comments