From a3fd6e3811bc821c9f3fcef34d4188eb91c7833e Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Sun, 17 May 2026 21:33:10 +0700 Subject: [PATCH] fix: change deploy workflow target branch and pull command to master --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 62e557f..4c91805 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,7 +3,7 @@ name: Deploy to VPS on: push: branches: - - main + - master workflow_dispatch: jobs: @@ -26,7 +26,7 @@ jobs: cd /opt/imphenbot || exit # Pull latest changes - git pull origin main + git pull origin master # Write environment variables from GitHub Secrets echo "$ENV_FILE" > .env