Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
johntruckenbrodt committed Apr 12, 2024
1 parent 630aece commit 7a06dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: dir "$env:CONDA\condabin"
- name: Add conda to system path
if: startsWith(matrix.os, 'windows')
run: echo "$env:CONDA/bin" | Out-File -FilePath $env:GITHUB_PATH -Append
run: echo "$env:CONDA\condabin" | Out-File -FilePath $env:GITHUB_PATH -Append
- name: Add conda to system path
if: ${{ ! startsWith(matrix.os, 'windows') }}
run: echo "$CONDA\condabin" >> $GITHUB_PATH
run: echo "$CONDA/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
Expand Down

0 comments on commit 7a06dac

Please sign in to comment.