From 7fe4e9a559a13ad7024b1d8ec6137bbb5b2b61d5 Mon Sep 17 00:00:00 2001 From: elzik <23397871+elzik@users.noreply.github.com> Date: Sun, 22 Oct 2023 19:39:46 +0100 Subject: [PATCH] Show when workflow is initiated due to a tag push --- .github/workflows/continuous-integration.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 6163cc7..399bd02 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -40,3 +40,7 @@ jobs: if: github.ref_name == 'main' run: ./Build/tag-with-semver.ps1 shell: pwsh + - name: Debug Output + if: contains(github.ref, 'refs/tags/') + run: Write-Output 'This was a tag push!' + shell: pwsh