From 31cb877881761c77874a7c3fab1fe19695e0053e Mon Sep 17 00:00:00 2001 From: kushalm Date: Tue, 5 Sep 2023 00:42:38 +0400 Subject: [PATCH] chore: Create tag workflow updated --- .github/workflows/create_tag.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index 20a50af..a11908d 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -22,9 +22,9 @@ jobs: pull-requests: write runs-on: ubuntu-latest - needs: [placeholder-job, trigger_next_action, trigger_create_tag_and_publish] + needs: [placeholder-job, check_version.check-version, trigger_on_pr_merge.trigger-create-tag-and-publish] - if: env.TRIGGER_NEXT_ACTION == 'true' && env.TRIGGER_CREATE_TAG_AND_PUBLISH == 'true' + if: ${{ needs.trigger_next_action.outputs.TRIGGER_NEXT_ACTION == 'true' && needs.trigger_create_tag_and_publish.outputs.TRIGGER_CREATE_TAG_AND_PUBLISH == 'true' }} steps: - uses: actions/checkout@v3