From 99d96e274859c8066a7b5929c5c1bfa3887f1cd4 Mon Sep 17 00:00:00 2001 From: Tyler Fox Date: Tue, 22 Oct 2024 11:39:07 -0700 Subject: [PATCH] Make sure to force get the latest tags, otherwise git complains --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 869dd0c..3e3b2d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - run: git fetch --tags origin + - run: git fetch --force --tags origin - name: Get Maya Devkit id: get-devkit @@ -80,7 +80,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: git fetch --tags origin + - run: git fetch --force --tags origin - name: 'Get Previous tag' id: previoustag uses: "WyriHaximus/github-action-get-previous-tag@v1"