Try returning to the 'normal' command, after force pulling the correct repo data

This commit is contained in:
Hamish Coleman 2021-10-31 17:08:10 +00:00
parent 6395aa4fbc
commit 3e2be20614

View File

@ -507,13 +507,13 @@ jobs:
# the annotated tag is visible in the "commit" action, but looks like a
# lightweight tag in the "tag" action
#
# So, instead of:
# TAGTYPE=$(git cat-file -t $GITHUB_REF)
# We try to build a workaround
# It appears that the repository that is checked out as part of a tag
# action does not have the correct tag object in it. As a work around,
# we do a force pull of the repo to get the correct tag details.
- name: Get Tag Type
run: |
git pull --tags --force
if git cat-file tag $GITHUB_REF; then TYPE=tag; else TYPE=commit; fi
git pull --tags --force origin HEAD
TYPE=$(git cat-file -t $GITHUB_REF)
echo "::set-output name=TAGTYPE::$TYPE"
echo ================Debug