From 8637dec33be51d4ed2d0158d7e488eae98d5cd45 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 25 Apr 2022 21:36:23 +0300 Subject: [PATCH] try new implementation to checkout to develop --- .github/workflows/bumpversion.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bumpversion.yml b/.github/workflows/bumpversion.yml index f9e51d8..dc799f3 100644 --- a/.github/workflows/bumpversion.yml +++ b/.github/workflows/bumpversion.yml @@ -11,7 +11,12 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.TOKEN }} - ref: develop + # ref: develop + - name: fetch all branches + run: | + git fetch --all + get checkout origin develop + - name: pull latest develop branch changes run: git pull origin develop