We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a89fcb commit dc3d685Copy full SHA for dc3d685
1 file changed
.github/workflows/matrix_builds.yaml
@@ -147,6 +147,11 @@ jobs:
147
-o /tmp/squishy && sudo mv /tmp/squishy /usr/local/bin/squishy && sudo chmod +x /usr/local/bin/squishy
148
squishy --version || true
149
150
+ # Install appimagetool
151
+ curl -fsSL "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-${NATIVE_ARCH}.AppImage" \
152
+ -o /tmp/appimagetool && sudo mv /tmp/appimagetool /usr/local/bin/appimagetool && sudo chmod +x /usr/local/bin/appimagetool
153
+ appimagetool --version || true
154
+
155
# Setup minisign key if available
156
if [[ -n "${MINISIGN_KEY:-}" ]]; then
157
mkdir -p "${HOME}/.minisign"
0 commit comments