migrate
Deploy authentik / deploy (push) Successful in 13s
Deploy dockhand / deploy (push) Successful in 7s
Deploy duplicati / deploy (push) Successful in 10s
Deploy immich / deploy (push) Failing after 6s
Deploy obsidian / deploy (push) Successful in 6s
Deploy Sencho / deploy (push) Failing after 5s
Deploy watchtower / deploy (push) Failing after 7s
Deploy authentik / deploy (push) Successful in 13s
Deploy dockhand / deploy (push) Successful in 7s
Deploy duplicati / deploy (push) Successful in 10s
Deploy immich / deploy (push) Failing after 6s
Deploy obsidian / deploy (push) Successful in 6s
Deploy Sencho / deploy (push) Failing after 5s
Deploy watchtower / deploy (push) Failing after 7s
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
name: Deploy authentik
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'authentik/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync authentik to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "authentik/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy authentik Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/authentik
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy dockhand
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'dockhand/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync dockhand to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "dockhand/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy dockhand Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/dockhand
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy duplicati
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'duplicati/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync duplicati to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "duplicati/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy duplicati Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/duplicati
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy immich
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'immich/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync immich to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "immich/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy immich Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/immich
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy obsidian
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'obsidian/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync obsidian to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "obsidian/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy obsidian Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/obsidian
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy Sencho
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'Sencho/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync Sencho to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "Sencho/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy Sencho Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/Sencho
|
||||
docker compose up -d --remove-orphans
|
||||
@@ -0,0 +1,34 @@
|
||||
name: Deploy watchtower
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'watchtower/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Sync watchtower to Host
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
source: "watchtower/"
|
||||
target: "/home/miker/docker"
|
||||
|
||||
- name: Deploy watchtower Stack
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: "192.168.2.6"
|
||||
username: "miker"
|
||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||
script: |
|
||||
cd /home/miker/docker/watchtower
|
||||
docker compose up -d --remove-orphans
|
||||
Reference in New Issue
Block a user