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 d604e33 commit 12ec62cCopy full SHA for 12ec62c
.github/workflows/linux-appimage.yml
@@ -19,11 +19,14 @@ jobs:
19
with:
20
python-version: '3.x'
21
22
- - name: Install AppImage Builder
+ - name: Install dependencies and appimage-builder
23
run: |
24
- sudo add-apt-repository -y ppa:appimagebuilder-team/stable
25
sudo apt-get update
26
- sudo apt-get install -y appimage-builder
+ sudo apt-get install -y --no-install-recommends \
+ squashfs-tools zsync desktop-file-utils appstream file patchelf libglib2.0-bin fakeroot
27
+ python -m pip install --upgrade pip
28
+ python -m pip install --user appimage-builder
29
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
30
31
- name: Build AppImage
32
0 commit comments