From c8c2d0e659bf81d7d68ee667582fdc20e125f4ca Mon Sep 17 00:00:00 2001 From: JoseEspinosa Date: Thu, 5 Mar 2020 17:48:10 +0100 Subject: [PATCH] Trying to fix git actions --- .github/workflows/tcoffee.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tcoffee.yml b/.github/workflows/tcoffee.yml index 59b7b04e..fedb6790 100644 --- a/.github/workflows/tcoffee.yml +++ b/.github/workflows/tcoffee.yml @@ -11,8 +11,13 @@ jobs: steps: # Check out the repository - - uses: actions/checkout@v1 - submodules: true + - uses: actions/checkout@v2 + - name: Checkout submodules + shell: bash + run: | + auth_header="$(git config --local --get http.https://github.com/.extraheader)" + git submodule sync --recursive + git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Install Nextflow run: |