From 07183d53914be0ce6f5214636558c8cf78d7b5c2 Mon Sep 17 00:00:00 2001 From: Vini47 Date: Wed, 4 Sep 2024 00:52:33 -0300 Subject: [PATCH] fix 2077 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50a4b847..d8b50e1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: - name: Fetch and Checkout Branch run: | git fetch origin - git checkout projeto_deploy || echo "Branch projeto_deploy does not exist locally; creating it." + git checkout projeto_deploy || git checkout -b projeto_deploy git pull origin projeto_deploy || echo "Failed to pull from projeto_deploy." - name: Commit and Push Changes