From b293096c720bd935d11d1d00dc0725c883ad33a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mamy=20Andr=C3=A9-Ratsimbazafy?= Date: Tue, 6 Oct 2020 15:52:36 +0200 Subject: [PATCH] display branch found in CLI [skip ci] --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12efc9da2..994156fdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,9 @@ jobs: steps: - name: Get branch name shell: bash - run: echo "##[set-output name=branch_name;]$(echo ${GITHUB_REF#refs/heads/})" + run: | + echo "##[set-output name=branch_name;]$(echo ${GITHUB_REF#refs/heads/})" + echo "Branch found: ${{ steps.get_branch.outputs.branch_name }}" id: get_branch - name: Cancel Previous Runs (except master/devel)