Trying to fix git actions

This commit is contained in:
JoseEspinosa 2020-03-05 17:48:10 +01:00
parent 5bb7d9c497
commit c8c2d0e659

View file

@ -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: |