Added check for share
Deploy to Unraid Share / copy-file (push) Successful in 9s

This commit is contained in:
2026-04-19 22:04:29 +02:00
parent a9f2829111
commit 4f6691cac0
+10 -2
View File
@@ -7,17 +7,25 @@ on:
jobs: jobs:
copy-file: copy-file:
runs-on: ubuntu-latest # Or your specific runner label runs-on: ubuntu-latest # Or your specific runner label
container:
volumes:
- /static:/static
steps: steps:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Copy File to Unraid Share - name: Copy File to Unraid Share
run: | run: |
# Create the destination directory if it doesn't exist # Check if share exists
mkdir -p /static/andromeda/css/ ls -la /static
ls -l ls -l
ls -l / ls -l /
ls -l /static/ ls -l /static/
# Create the destination directory if it doesn't exist
mkdir -p /static/andromeda/css/
ls -l /static/andromeda/css/ ls -l /static/andromeda/css/
# Copy your specific file # Copy your specific file