Skip to content

Commit cc6cb75

Browse files
committed
fix path to recipe
1 parent 820ceda commit cc6cb75

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/recipes.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Cache conda
1313
uses: actions/cache@v1
1414
env:
15-
# Increase this value to reset cache if data/recipe_example.yml has not changed
15+
# Increase this value to reset cache if files/recipe_example.yml has not changed
1616
CACHE_NUMBER: 1
1717
with:
1818
path: ~/conda_pkgs_dir
19-
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('data/recipe_example.yml') }}
19+
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('files/recipe_example.yml') }}
2020
- uses: goanpeca/setup-miniconda@v1
2121
- name: Install esmvaltool
2222
run: conda install -n test -y -c esmvalgroup -c conda-forge esmvaltool-python
@@ -41,8 +41,8 @@ jobs:
4141
with:
4242
path: ~/default_inputpath
4343
key: ${{ runner.os }}-datasets-${{ env.CACHE_NUMBER }}-${{ hashFiles('data/dataset.urls') }}
44-
- name: Download dataset files for data/recipe_example.yml
44+
- name: Download dataset files for files/recipe_example.yml
4545
run: |
4646
head -4 data/dataset.urls | grep -v '#' | wget --input-file - --no-clobber --directory-prefix $HOME/default_inputpath/
47-
- name: Run data/recipe_example.yml
48-
run: $CONDA/envs/test/bin/esmvaltool run $PWD/data/recipe_example.yml
47+
- name: Run files/recipe_example.yml
48+
run: $CONDA/envs/test/bin/esmvaltool run $PWD/files/recipe_example.yml

0 commit comments

Comments
 (0)