This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user