You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/09/09 15:19:22 UTC

[incubator-streampipes-extensions] branch rel/0.67.0 updated: [STREAMPIPES-232] fix branch name parsing

This is an automated email from the ASF dual-hosted git repository.

wiener pushed a commit to branch rel/0.67.0
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git


The following commit(s) were added to refs/heads/rel/0.67.0 by this push:
     new 931e872  [STREAMPIPES-232] fix branch name parsing
931e872 is described below

commit 931e872fc589faad2424a59a06394abbb3fbb636
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Wed Sep 9 17:18:03 2020 +0200

    [STREAMPIPES-232] fix branch name parsing
---
 .github/workflows/build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 121cdaa..f9bce7a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -26,7 +26,7 @@ jobs:
     steps:
       - name: Set Branch env variable
         run: |
-          echo "::set-env name=GITHUB_BRANCH::${GITHUB_REF##*/}"
+          echo "::set-env name=GITHUB_BRANCH::${GITHUB_REF#refs/*/}"
           echo ${{ env.GITHUB_BRANCH }}
       - name: Checkout incubator-streampipes project
         uses: actions/checkout@v2