Skip to content

Commit

Permalink
add always options to try
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre JOURNET committed Oct 28, 2024
1 parent bef3c70 commit 7c0b19b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/daily-tag-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
git fetch --tags
# Get the latest tag and output it
LAST_TAG=$(git describe --tags --abbrev=0 || echo "")
echo $(git describe --tags --abbrev=0 || echo "")
echo "last_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
LAST_TAG=$(git describe --tags --abbrev=0 --always || echo "")
echo $(git describe --tags --abbrev=0 --always || echo "")
echo "last_tag=$(git describe --tags --abbrev=0 --always)" >> $GITHUB_ENV
- name: Check for new commits since last tag
id: new-commits
Expand Down

0 comments on commit 7c0b19b

Please sign in to comment.