From df6fed03827a10bef84f8141d4e42fded8a30e95 Mon Sep 17 00:00:00 2001 From: jess tran Date: Fri, 1 Dec 2023 14:14:00 -0600 Subject: [PATCH] Update release.yml to include git fetch --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c2378a..653545c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: run: | set -e echo "Checkout the release branch" - git checkout origin/releases/v1 + git fetch && git checkout origin/releases/v1 echo "Bring latest changes from main" git reset --hard main echo "Install dependencies"