From 4d3aac499059ae516df7350bade0383627143546 Mon Sep 17 00:00:00 2001 From: afkarxyz Date: Sat, 13 Dec 2025 14:28:08 +0700 Subject: [PATCH] v6.8 --- .github/workflows/build.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 10d2b92..e0921fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -243,10 +243,21 @@ jobs: run: | upx --best --lzma build/bin/SpotiFLAC + - name: Cache appimagetool + id: cache-appimagetool + uses: actions/cache@v4 + with: + path: appimagetool + key: appimagetool-x86_64-v1 + - name: Download appimagetool + if: steps.cache-appimagetool.outputs.cache-hit != 'true' run: | - wget -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage - chmod +x appimagetool + wget --timeout=30 --tries=5 --retry-connrefused --waitretry=5 -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage || \ + wget --timeout=30 --tries=5 --retry-connrefused --waitretry=5 -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage + + - name: Make appimagetool executable + run: chmod +x appimagetool - name: Create AppImage run: |