Skip to content

Commit

Permalink
ci: fix take not empty tags
Browse files Browse the repository at this point in the history
  • Loading branch information
necipallef committed Sep 27, 2024
1 parent fd581f6 commit 1f2620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e_test_for_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
needToRunTests=false
for commit in $diff; do
tag=$(git tag --points-at "$commit")
if [[ -z "$tag" ]]; then
if [[ -n "$tag" ]]; then
echo COMMIT_WITH_TAG=${commit} >> $GITHUB_OUTPUT
needToRunTests=true
fi
Expand Down

0 comments on commit 1f2620a

Please sign in to comment.