Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt install -y python3.11-minimal python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace git
sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
sudo wget https://github.com/AppImage/type2-runtime/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
Comment thread
mrRedSun marked this conversation as resolved.
Outdated
sudo chmod +x /usr/local/bin/appimagetool
- uses: actions/checkout@v3
- name: Install appimage-builder
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt install -y python3.8-minimal python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace git
sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
sudo wget https://github.com/AppImage/type2-runtime/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
sudo chmod +x /usr/local/bin/appimagetool
- uses: actions/checkout@v3
- name: Install appimage-builder
Expand Down
2 changes: 1 addition & 1 deletion appimagebuilder/modules/prime/appimage_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _make_squashfs(self, appdir: pathlib.Path):

def _get_appimage_kit_runtime(self):
url = (
"https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-%s"
"https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-%s"
Comment thread
mrRedSun marked this conversation as resolved.
% self.bundle_main_arch
)
logging.info("Downloading: %s" % url)
Expand Down