Skip to content

Commit d84604f

Browse files
committed
add missing fzf binary to release
1 parent f244b2d commit d84604f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ jobs:
158158
- name: Strip release binary (linux and macos)
159159
if: matrix.build == 'linux' || matrix.build == 'macos'
160160
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"
162164
163165
- name: Strip release binary (arm)
164166
if: matrix.build == 'linux-arm'
@@ -168,7 +170,8 @@ jobs:
168170
rustembedded/cross:arm-unknown-linux-gnueabihf \
169171
arm-linux-gnueabihf-strip \
170172
/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
172175
173176
- name: Build archive
174177
shell: bash
@@ -182,11 +185,13 @@ jobs:
182185
if [ "${{ matrix.os }}" = "windows-2019" ]; then
183186
cp "target/${{ matrix.target }}/release/rga.exe" "$staging/"
184187
cp "target/${{ matrix.target }}/release/rga-preproc.exe" "$staging/"
188+
cp "target/${{ matrix.target }}/release/rga-fzf.exe" "$staging/"
185189
7z a "$staging.zip" "$staging"
186190
echo "ASSET=$staging.zip" >> $GITHUB_ENV
187191
else
188192
cp "target/${{ matrix.target }}/release/rga" "$staging/"
189193
cp "target/${{ matrix.target }}/release/rga-preproc" "$staging/"
194+
cp "target/${{ matrix.target }}/release/rga-fzf" "$staging/"
190195
tar czf "$staging.tar.gz" "$staging"
191196
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
192197
fi

0 commit comments

Comments
 (0)