From 7b56ddc73c0139d4e4c86b3370f6b8bb9deba9d1 Mon Sep 17 00:00:00 2001 From: koningin_samira Date: Sun, 19 Apr 2026 21:48:46 +0200 Subject: [PATCH] Fixed css file not copying --- .gitea/workflows/deploy.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 8220a76..75ad135 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -14,13 +14,9 @@ jobs: - name: Copy File to Unraid Share run: | # Create the destination directory if it doesn't exist - ls -l - mkdir -p /static/andromeda/css/ - - ls -l /static/andromeda/css/ # Copy your specific file - cp ./*.css /static/andromeda/css/ + cp *.css /static/andromeda/css/ echo "File successfully copied to Unraid share via bind mount." \ No newline at end of file