From b790c00187fbb4388dae5285d570c646af2b8c3c Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 12 Feb 2020 11:25:03 +0100 Subject: [PATCH] [action] Correctly fetch the right branch in the CI --- .github/workflows/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 85ff87d..afef18a 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -103,7 +103,7 @@ jobs: shell: bash run: | cd $HOME - git clone https://github.com/${REP} --depth=1 --branch ${GITHUB_REF##*/} + git clone https://github.com/${REP} --depth=1 --branch ${GITHUB_REF##*heads/} pip3 install --user --no-deps ./${REP##*/} env: REP: ${{github.repository}}