We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a00c3c1 commit 54db7e6Copy full SHA for 54db7e6
.github/workflows/continuous-builds.yml
@@ -46,8 +46,9 @@ jobs:
46
name: appimage-builder
47
- name: Pack bash
48
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
+ BUILDER_PATH=$(find $PWD -name appimage-builder-*.AppImage)
+ chmod +x $BUILDER_PATH
51
+ $BUILDER_PATH --recipe ./examples/bash/AppImageBuilder.yml --skip-test
52
- name: Test bash
53
54
./bash*.AppImage --appimage-extract-and-run -c "echo Hello World"
0 commit comments