Skip to content

Commit 089d881

Browse files
[CI] fix caching condition
1 parent 7f7a0b1 commit 089d881

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/caches_cron_job.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646

4747
# activate environment if not restored from cache
4848
- uses: conda-incubator/setup-miniconda@v2
49-
if: steps.cache-venv.outputs.cache-hit != 'true'
49+
if: steps.cache-conda-env.outputs.cache-hit != 'true'
5050
with:
5151
activate-environment: neo-test-env
5252
python-version: 3.9
5353

5454
- name: Create the conda environment to be cached
55-
if: steps.cache-venv.outputs.cache-hit != 'true'
55+
if: steps.cache-conda-env.outputs.cache-hit != 'true'
5656
# create conda env, configure git and install pip, neo and test dependencies from master
5757
# for PRs that change dependencies, this environment will be updated in the test workflow
5858
run: |

0 commit comments

Comments
 (0)