From 312d2348a679e8358ab0ecfd64b17bbe3a2bec3a Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 24 Aug 2026 23:19:54 +0200 Subject: [PATCH] ci: add master deploy pipeline (deploys to TARGET_MASTER_DIR) --- .gitea/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 199fefd2..046a4eca 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,9 +1,9 @@ -name: Deploy to Production on Develop Push +name: Deploy to Production on Master Push on: push: branches: - - develop + - master jobs: deploy: @@ -47,4 +47,4 @@ jobs: --exclude="tools/" \ -e "ssh -p ${{ secrets.SSH_PORT }} -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no" \ ./ \ - ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }} + ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_MASTER_DIR }}