From c6438cc1970e8692934a2df3f375b96df4eb8724 Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Thu, 22 Aug 2024 20:26:25 -0400 Subject: [PATCH] only tag and releae if it is a push --- .github/actions/build-tag-release/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-tag-release/action.yml b/.github/actions/build-tag-release/action.yml index c3ef9a4..5a7c0e2 100644 --- a/.github/actions/build-tag-release/action.yml +++ b/.github/actions/build-tag-release/action.yml @@ -78,7 +78,7 @@ runs: fi - name: Tag Release on Success - if: ${{ inputs.tag_release == 'true' }} + if: ${{ inputs.tag_release == 'true' }} && ${{ inputs.event_name == 'push' }} uses: rymndhng/release-on-push-action@master with: bump_version_scheme: ${{ inputs.bump_version_scheme }}