Skip to content

Commit f21ebed

Browse files
committed
fix step names
1 parent f3af766 commit f21ebed

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
run: |
124124
echo "today=$(date -u '+%Y%m%d')"
125125
echo "today=$(date -u '+%Y%m%d')" >> $GITHUB_OUTPUT
126-
- name: Cache env
126+
- name: Restore cached env
127127
uses: actions/cache/restore@v4
128128
with:
129129
path: ${{env.CONDA}}/envs/${{steps.setup.outputs.env-name}}
@@ -135,7 +135,7 @@ jobs:
135135
env:
136136
CACHE_NUMBER: 0
137137
id: cache-env
138-
- name: Restore cached env
138+
- name: Install env
139139
run: conda env update --name=${{steps.setup.outputs.env-name}} --file=${{steps.setup.outputs.env-file}} python=${{matrix.python-version}}
140140
if: steps.cache-env.outputs.cache-hit != 'true'
141141
- name: Cache env
@@ -154,7 +154,8 @@ jobs:
154154
pyright --version
155155
pyright -p pyproject.toml --pythonversion ${{ matrix.python-version }}
156156
if: matrix.run-expensive-tests
157-
- uses: actions/cache/restore@v4
157+
- name: Restore bioimageio cache
158+
uses: actions/cache/restore@v4
158159
id: bioimageio-cache
159160
with:
160161
path: bioimageio_cache

0 commit comments

Comments
 (0)