Fix CSS files upload path in deploy workflow
Some checks failed
Deploy / Deploy to pre-production (push) Failing after 5s

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 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2025-12-18 18:03:45 +01:00
parent 44257321ca
commit 46f615c88c

View file

@ -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