Skip to content

Commit

Permalink
Install miniforge from action
Browse files Browse the repository at this point in the history
let OS specifics be handled by action
instead of hassling with it.
  • Loading branch information
florianesser-tng committed Nov 20, 2024
1 parent b9d7aa8 commit 0a64cd6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ jobs:
with:
node-version: '20'

- name: Install Miniforge
run: |
choco install miniforge3
- uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: true
python-version: "3.11"
miniforge-version: latest

- name: Install libuv dependency with Miniforge
run: |
conda create -n cp311_libuv python=3.11 libuv -y
# copy the path to this conda env
conda env list
conda env list | findstr cp311_libuv
- name: pwd
Expand Down

0 comments on commit 0a64cd6

Please sign in to comment.