From aaaab7c5624e94259c9a6121142f2ae0ad6d5a65 Mon Sep 17 00:00:00 2001 From: Paris Morgan Date: Wed, 10 Jan 2024 17:06:28 +0100 Subject: [PATCH] ci testing --- .github/workflows/build_wheels_testing.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels_testing.yml b/.github/workflows/build_wheels_testing.yml index 4470957fb..a120b2994 100644 --- a/.github/workflows/build_wheels_testing.yml +++ b/.github/workflows/build_wheels_testing.yml @@ -17,11 +17,12 @@ jobs: - name: Determine Release Tag id: get_release_tag run: | - git status - git branch - git checkout main - git status - git branch + echo "git status" && git status + echo "git branch" && git branch + echo "git fetch origin" && git fetch origin + echo "git checkout main" && git checkout main + echo "git status" && git status + echo "git branch" && git branch release_tag=$(git describe --tags --abbrev=0) echo "::set-output name=release_tag::$release_tag"