Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
skoobasteeve committed Aug 21, 2024
1 parent 135ced7 commit cb4d929
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ycharts_patch_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
git checkout master
git fetch --tags --force origin
LATEST_TAG=$(git describe --tags --abbrev=0)
echo "DEBUG LATEST TAG"
echo $LATEST_TAG
if [ $(git tag -l "$LATEST_TAG-ycharts") ] || [[ $LATEST_TAG == *"-ycharts" ]]; then
echo "tag_exists=true" >> $GITHUB_OUTPUT
Expand All @@ -54,7 +57,10 @@ jobs:
git checkout xmlsec-1_2_x
git fetch --tags --force origin
LATEST_TAG=$(git describe --tags --abbrev=0)
echo "DEBUG LATEST TAG"
echo $LATEST_TAG
if [ $(git tag -l "$LATEST_TAG-ycharts") ] || [[ $LATEST_TAG == *"-ycharts" ]]; then
echo "tag_exists=true" >> $GITHUB_OUTPUT
else
Expand Down

0 comments on commit cb4d929

Please sign in to comment.