Skip to content

Commit 15e0291

Browse files
committed
Update action.yml
1 parent 89996e6 commit 15e0291

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/actions/setup-conda/action.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,14 @@ inputs:
33
environment-file:
44
description: Conda environment file to use.
55
default: environment.yml
6-
environment-name:
7-
description: Name to use for the Conda environment
8-
default: test
9-
extra-specs:
10-
description: Extra packages to install
11-
required: false
126
runs:
137
using: composite
148
steps:
159
- name: Install ${{ inputs.environment-file }}
1610
uses: mamba-org/setup-micromamba@v1
1711
with:
1812
environment-file: ${{ inputs.environment-file }}
19-
environment-name: ${{ inputs.environment-name }}
20-
create-args: ${{ inputs.extra-specs }}
13+
environment-name: test
2114
condarc-file: ci/condarc.yml
22-
cache-env: true
15+
cache-environment: true
2316
cache-downloads: true

0 commit comments

Comments
 (0)