From 69d3d327122ae466f50116b535e3134384da0230 Mon Sep 17 00:00:00 2001 From: Mike McFetridge <91107715+mmcfetridge1969@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:08:52 -0400 Subject: [PATCH] . --- .gitea/workflows/deploy-ArrStack.yml | 35 +++++++++++++++++++++++++++ .gitea/workflows/deploy-Ittools.yml | 35 +++++++++++++++++++++++++++ .gitea/workflows/deploy-Mealie.yml | 35 +++++++++++++++++++++++++++ .gitea/workflows/deploy-Semaphore.yml | 35 +++++++++++++++++++++++++++ 4 files changed, 140 insertions(+) create mode 100644 .gitea/workflows/deploy-ArrStack.yml create mode 100644 .gitea/workflows/deploy-Ittools.yml create mode 100644 .gitea/workflows/deploy-Mealie.yml create mode 100644 .gitea/workflows/deploy-Semaphore.yml diff --git a/.gitea/workflows/deploy-ArrStack.yml b/.gitea/workflows/deploy-ArrStack.yml new file mode 100644 index 0000000..5175539 --- /dev/null +++ b/.gitea/workflows/deploy-ArrStack.yml @@ -0,0 +1,35 @@ +name: Deploy ArrStack + +on: + push: + branches: + - main + paths: + - 'ArrStack/**' + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Sync ArrStack to Host + uses: appleboy/scp-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + source: "ArrStack/*" + target: "/opt/Docker-Deployments/ArrStack" + strip_components: 1 + + - name: Deploy ArrStack Stack + uses: appleboy/ssh-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + script: | + cd /opt/Docker-Deployments/ArrStack + docker compose up -d --remove-orphans diff --git a/.gitea/workflows/deploy-Ittools.yml b/.gitea/workflows/deploy-Ittools.yml new file mode 100644 index 0000000..5849034 --- /dev/null +++ b/.gitea/workflows/deploy-Ittools.yml @@ -0,0 +1,35 @@ +name: Deploy Ittools + +on: + push: + branches: + - main + paths: + - 'Ittools/**' + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Sync Ittools to Host + uses: appleboy/scp-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + source: "Ittools/*" + target: "/opt/Docker-Deployments/Ittools" + strip_components: 1 + + - name: Deploy Ittools Stack + uses: appleboy/ssh-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + script: | + cd /opt/Docker-Deployments/Ittools + docker compose up -d --remove-orphans diff --git a/.gitea/workflows/deploy-Mealie.yml b/.gitea/workflows/deploy-Mealie.yml new file mode 100644 index 0000000..a7ec4a2 --- /dev/null +++ b/.gitea/workflows/deploy-Mealie.yml @@ -0,0 +1,35 @@ +name: Deploy Mealie + +on: + push: + branches: + - main + paths: + - 'Mealie/**' + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Sync Mealie to Host + uses: appleboy/scp-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + source: "Mealie/*" + target: "/opt/Docker-Deployments/Mealie" + strip_components: 1 + + - name: Deploy Mealie Stack + uses: appleboy/ssh-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + script: | + cd /opt/Docker-Deployments/Mealie + docker compose up -d --remove-orphans diff --git a/.gitea/workflows/deploy-Semaphore.yml b/.gitea/workflows/deploy-Semaphore.yml new file mode 100644 index 0000000..7f60d6c --- /dev/null +++ b/.gitea/workflows/deploy-Semaphore.yml @@ -0,0 +1,35 @@ +name: Deploy Semaphore + +on: + push: + branches: + - main + paths: + - 'Semaphore/**' + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Sync Semaphore to Host + uses: appleboy/scp-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + source: "Semaphore/*" + target: "/opt/Docker-Deployments/Semaphore" + strip_components: 1 + + - name: Deploy Semaphore Stack + uses: appleboy/ssh-action@master + with: + host: "192.168.2.13" + username: "miker" + key: ${{ secrets.SSH_PRIVATE_KEY }} + script: | + cd /opt/Docker-Deployments/Semaphore + docker compose up -d --remove-orphans