ci: Fix nextflow cache skip

This commit is contained in:
Edmund Miller 2021-04-12 14:25:22 -05:00
parent 180ea5b422
commit b0e235d676
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D
2 changed files with 4 additions and 3 deletions

View file

@ -60,6 +60,7 @@ jobs:
key: ${{ runner.os }}-nextflow
- name: Install Nextflow
if: steps.cache-nextflow.outputs.cache-hit != 'true'
env:
CAPSULE_LOG: none
run: |

View file

@ -49,13 +49,13 @@ jobs:
run: python -m pip install --upgrade pip pytest-workflow
- uses: actions/cache@v2
id: cache-nextflow
with:
path: /usr/local/bin/nextflow
key: ${{ runner.os }}-nextflow-${{ matrix.nxf_version }}
restore-keys: |
${{ runner.os }}-nextflow-
key: ${{ runner.os }}-nextflow
- name: Install Nextflow
if: steps.cache-nextflow.outputs.cache-hit != 'true'
env:
NXF_VER: ${{ matrix.nxf_version }}
CAPSULE_LOG: none