From 29c9566fd0e0e5ec17cf4cb5226f4c101bc8a242 Mon Sep 17 00:00:00 2001 From: Samira <13108552+koninginsamira@users.noreply.github.com> Date: Sun, 19 Apr 2026 17:04:32 +0200 Subject: [PATCH] Added action to deploy static files --- .gitea/workflows/deploy.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..fb8684b --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,22 @@ +name: Deploy to Unraid Share +on: + push: + branches: + - main + +jobs: + copy-file: + runs-on: ubuntu-latest # Or your specific runner label + 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/ + + # Copy your specific file + cp ./*.css /static/andromeda/css/ + + echo "File successfully copied to Unraid share via bind mount." \ No newline at end of file