Skip to content

Commit 54db7e6

Browse files
committed
fix: wrong binary path on tests
1 parent a00c3c1 commit 54db7e6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/continuous-builds.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ jobs:
4646
name: appimage-builder
4747
- name: Pack bash
4848
run: |
49-
chmod +x appimage-builder-0.8.3-x86_64.AppImage
50-
./appimage-builder-0.8.3-x86_64.AppImage --recipe ./examples/bash/AppImageBuilder.yml --skip-test
49+
BUILDER_PATH=$(find $PWD -name appimage-builder-*.AppImage)
50+
chmod +x $BUILDER_PATH
51+
$BUILDER_PATH --recipe ./examples/bash/AppImageBuilder.yml --skip-test
5152
- name: Test bash
5253
run: |
5354
./bash*.AppImage --appimage-extract-and-run -c "echo Hello World"

0 commit comments

Comments
 (0)