From 4f6691cac0fdd19fdf1df94230232c2e65e1e59a Mon Sep 17 00:00:00 2001 From: koningin_samira Date: Sun, 19 Apr 2026 22:04:29 +0200 Subject: [PATCH] Added check for share --- .gitea/workflows/deploy.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 81bc145..88d3f0a 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -7,17 +7,25 @@ on: jobs: copy-file: runs-on: ubuntu-latest # Or your specific runner label + container: + volumes: + - /static:/static steps: - name: Checkout Code uses: actions/checkout@v4 - name: Copy File to Unraid Share run: | - # Create the destination directory if it doesn't exist - mkdir -p /static/andromeda/css/ + # Check if share exists + ls -la /static + ls -l ls -l / ls -l /static/ + + # Create the destination directory if it doesn't exist + mkdir -p /static/andromeda/css/ + ls -l /static/andromeda/css/ # Copy your specific file