From 1f2620a5bb56a153026bd743f16ab408fbc43a02 Mon Sep 17 00:00:00 2001 From: Necip Allef Date: Fri, 27 Sep 2024 17:25:23 +0300 Subject: [PATCH] ci: fix take not empty tags --- .github/workflows/e2e_test_for_releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e_test_for_releases.yml b/.github/workflows/e2e_test_for_releases.yml index 08f03c78..367ce9d5 100644 --- a/.github/workflows/e2e_test_for_releases.yml +++ b/.github/workflows/e2e_test_for_releases.yml @@ -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