File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -11,29 +11,32 @@ jobs:
11
11
fail-fast : false
12
12
matrix :
13
13
os : [
14
- ubuntu-latest,
15
- windows-latest,
16
- macos-latest,
14
+ ' ubuntu-latest' ,
15
+ ' windows-latest' ,
16
+ ' macos-latest' ,
17
17
]
18
18
python-version : [
19
19
' 3.9' ,
20
20
' 3.10' ,
21
21
' 3.11' ,
22
22
]
23
23
name : Publish to Anaconda
24
+ defaults :
25
+ run :
26
+ shell : bash -l {0}
24
27
steps :
25
28
- uses : actions/checkout@v2
26
29
id : cache
27
30
- uses : conda-incubator/setup-miniconda@v3
28
31
with :
32
+ auto-update-conda : true
29
33
python-version : ${{ matrix.python-version }}
30
34
channels : conda-forge
31
35
channel-priority : strict
32
- conda-build-version : ' 3.28'
33
36
conda-solver : ' libmamba'
34
37
activate-environment : " decide"
35
- - run : conda install --yes anaconda-client
36
- - run : conda build --numpy 1.23.4 --python ${{ matrix.python-version }} .
37
- - run : anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload /usr/share/miniconda/conda-bld/**/decide-exchange-model-*.tar.bz2
38
-
39
-
38
+ - run : |
39
+ conda install --yes anaconda-client build
40
+ anaconda --version
41
+ conda build --numpy 1.23.4 --python ${{ matrix.python-version }} .
42
+ anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload /usr/share/miniconda/conda-bld/**/decide-exchange-model-*.tar.bz2
You can’t perform that action at this time.
0 commit comments