Skip to content

Commit

Permalink
Fix conda requirements path
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoGrieco committed Apr 20, 2023
1 parent d63b338 commit 3606eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
shell: bash -l {0}
if: steps.cache-restore-conda-deps.outputs.cache-hit != 'true'
run: |
mamba env update -f .github/workflows/conda-deps.yml
mamba env update -f .github/workflows/requirements.yml
- name: Cache conda based dependencies
if: ${{ steps.cache-restore-conda-deps.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v3
with:
path: ${{ env.CONDA }}/envs/test
key: conda-${{ hashFiles('.github/workflows/conda-deps.yml') }}-${{ env.DATE }}
key: conda-${{ hashFiles('.github/workflows/requirements.yml') }}-${{ env.DATE }}
id: cache-save-conda-deps

- name: Restore cached west workspace
Expand Down

0 comments on commit 3606eb4

Please sign in to comment.