We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d4355 commit ce04f2aCopy full SHA for ce04f2a
.github/workflows/sync_lab_release.yml
@@ -12,6 +12,10 @@ permissions:
12
jobs:
13
check_for_lab_updates:
14
runs-on: macos-latest
15
+ defaults:
16
+ run:
17
+ # needed for conda to work
18
+ shell: bash -el {0}
19
20
steps:
21
- uses: actions/checkout@v4
@@ -66,9 +70,13 @@ jobs:
66
70
npm install --global yarn
67
71
yarn install
68
72
69
- - name: Install conda
73
+ - uses: conda-incubator/setup-miniconda@v3
74
if: env.update_available == 'true'
- 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
80
81
- name: Install conda dependencies
82
0 commit comments