Skip to content

Commit ce04f2a

Browse files
committed
Update sync_lab_release.yml
1 parent d5d4355 commit ce04f2a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/sync_lab_release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ permissions:
1212
jobs:
1313
check_for_lab_updates:
1414
runs-on: macos-latest
15+
defaults:
16+
run:
17+
# needed for conda to work
18+
shell: bash -el {0}
1519

1620
steps:
1721
- uses: actions/checkout@v4
@@ -66,9 +70,13 @@ jobs:
6670
npm install --global yarn
6771
yarn install
6872
69-
- name: Install conda
73+
- uses: conda-incubator/setup-miniconda@v3
7074
if: env.update_available == 'true'
71-
uses: s-weigand/setup-conda@v1
75+
with:
76+
auto-update-conda: true
77+
auto-activate-base: true
78+
activate-environment: ""
79+
channels: conda-forge
7280

7381
- name: Install conda dependencies
7482
if: env.update_available == 'true'

0 commit comments

Comments
 (0)