Skip to content

Commit

Permalink
Manual AppImageKit install
Browse files Browse the repository at this point in the history
  • Loading branch information
qstokkink committed Nov 27, 2024
1 parent 971c103 commit 10e7172
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,17 @@ jobs:
shell: /bin/sh
install: |
apt-get update -q -y
apt-get install -q -y git patchelf python3-pip python-is-python3 libfuse2
apt-get install -q -y git patchelf python3-pip python-is-python3 libfuse2 wget
run: |
mkdir -p /root/.local/bin
wget -O /root/.local/bin/appimagetool-aarch64.AppImage "https://github.com/AppImage/appimagetool/releases/download/1.9.0/appimagetool-aarch64.AppImage"
chmod +x /root/.local/bin/appimagetool-aarch64.AppImage
ln -s /root/.local/bin/appimagetool-aarch64.AppImage /root/.local/bin/appimagetool
chmod +x /root/.local/bin/appimagetool
ARCH=aarch64 /root/.local/bin/appimagetool-aarch64.AppImage --help
ARCH=aarch64 /root/.local/bin/appimagetool --help
cd /myproject
pip install --upgrade pip cx-Freeze
Expand Down

0 comments on commit 10e7172

Please sign in to comment.