From 91ac570b9d5ba20c54795478cd712895af270f18 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 24 Apr 2021 20:14:12 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c66547d..b082642 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,13 +21,13 @@ jobs: id: branch-name uses: ./ - name: Show output - if: "!startsWith(github.ref, 'refs/tags/')" run: | echo "Current Branch: ${{ steps.branch-name.outputs.current_branch }}" echo "Base Ref: ${{ steps.branch-name.outputs.base_ref_branch }}" echo "Head Ref: ${{ steps.branch-name.outputs.head_ref_branch }}" echo "Ref: ${{ steps.branch-name.outputs.ref_branch }}" echo "Is Default: ${{ steps.branch-name.outputs.is_default }}" + echo "Current tag: ${{ steps.branch-name.outputs.tag }}" - name: Check is_default for pull request if: github.event_name == 'pull_request' && !startsWith(github.ref, 'refs/tags/') && steps.branch-name.outputs.is_default != 'false' run: |