From 351c92d33ec2e6a32a494497e2b9fc12260e767e Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Fri, 27 Feb 2026 04:56:53 -0600 Subject: [PATCH] Remove generate-icons step from APK CI build --- .gitlab-ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fadac8c1..786f6ec3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,7 +52,7 @@ build-apk: before_script: # Install system dependencies - apt-get update -qq - - apt-get install -y -qq curl unzip imagemagick inkscape > /dev/null + - apt-get install -y -qq curl unzip > /dev/null # Install Node.js 22 - curl -fsSL https://deb.nodesource.com/setup_22.x | bash - @@ -111,9 +111,6 @@ build-apk: - npx vite build -l error - cp dist/index.html dist/404.html - # Generate Android icons - - bash scripts/generate-icons.sh - # Sync web assets to Capacitor Android project - npx cap sync android