Skip to content

Commit

Permalink
smarter model caching?
Browse files Browse the repository at this point in the history
  • Loading branch information
brycedrennan committed Sep 30, 2023
1 parent 61b4412 commit 48348e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
# Generate initial file list for all directories
- name: Generate initial model file list
run: |
for dir in ${{ env.CACHE_PATHS }}; do
for dir in $CACHE_PATHS; do
if [ -d "$dir" ]; then
find $dir
fi
Expand All @@ -94,7 +94,7 @@ jobs:
# Generate final file list and check for new files
- name: Generate final model file list
run: |
for dir in ${{ env.CACHE_PATHS }}; do
for dir in CACHE_PATHS; do
if [ -d "$dir" ]; then
find $dir
fi
Expand Down

0 comments on commit 48348e9

Please sign in to comment.