From 46f615c88cc2786199f2879211cc14d695ac0ab6 Mon Sep 17 00:00:00 2001 From: isUnknown Date: Thu, 18 Dec 2025 18:03:45 +0100 Subject: [PATCH] Fix CSS files upload path in deploy workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace cd/lcd/mput commands with put using full paths to ensure style.css and style.css.map are correctly uploaded to assets/css/ directory instead of root. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .forgejo/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 3a2fdb1..1cf4018 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -28,9 +28,8 @@ jobs: # Mirror everything except hidden files/folders and assets/css content mirror --reverse --verbose --ignore-time --parallel=10 -x '.*' -x '*/.*' -x 'assets/css/*' . . # Sync only style.css and style.css.map from assets/css - cd assets/css - lcd assets/css - mput style.css style.css.map + put assets/css/style.css -o assets/css/style.css + put assets/css/style.css.map -o assets/css/style.css.map quit SCRIPT lftp -f /tmp/lftp-script.txt