Skip to content

Commit

Permalink
one more fix to the new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsnolde committed Mar 8, 2024
1 parent 9984d91 commit a17b90e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
latest_vroom_tag="v1.15.0" #$(curl --silent -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/VROOM-Project/vroom/tags | jq -r '.[0].name')
latest_vroom_tag=$(curl --silent -L -H "Accept: application/vnd.github+json" https://api.github.com/repos/VROOM-Project/vroom/tags | jq -r '.[0].name')
latest_this_tag=$(git describe --tags --abbrev=0)
echo "Current tag: ${latest_this_tag}"
echo "VROOM latest tag: ${latest_vroom_tag}"
# first check vroom
if [[ $latest_vroom_tag == $latest_this_tag ]]; then
"All up-to-date."
Expand Down

0 comments on commit a17b90e

Please sign in to comment.