Added action to deploy static files
Deploy to Unraid Share / copy-file (push) Successful in 12s

This commit is contained in:
Samira
2026-04-19 17:04:32 +02:00
parent 1984926c7f
commit 29c9566fd0
+22
View File
@@ -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."