From 1ee99c8003a28644a1581164c4740b09de7f07b6 Mon Sep 17 00:00:00 2001 From: Sugat Sujakhu <73330912+NotSugat@users.noreply.github.com> Date: Sat, 28 Sep 2024 09:46:06 +0545 Subject: [PATCH] fix: change directory name in workflow --- .github/workflows/deploy-to-vps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-to-vps.yml b/.github/workflows/deploy-to-vps.yml index ea69f0b..80e1958 100644 --- a/.github/workflows/deploy-to-vps.yml +++ b/.github/workflows/deploy-to-vps.yml @@ -40,7 +40,7 @@ jobs: key: ${{ secrets.PRIVATE_KEY }} port: 22 script: | - cd ~/website + cd ~/kuosc-website git pull origin main || { echo "Failed to pull latest changes from Git repository"; exit 1; } yarn install || { echo "Failed to install dependencies"; exit 1; } yarn run build || { echo "Build failed"; exit 1; }