File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 41
41
anaconda login --username ${{ secrets.ANACONDA_USERNAME }} --password ${{ secrets.ANACONDA_PASSWORD }}
42
42
anaconda upload osx-64/*.tar.bz2 --force
43
43
anaconda logout
44
+
45
+ macos :
46
+ name : MacOS-arm64
47
+ runs-on : " macos-14"
48
+ steps :
49
+ - uses : actions/checkout@v2
50
+ - uses : conda-incubator/setup-miniconda@v2
51
+ with :
52
+ miniconda-version : " latest"
53
+ activate-environment : packaging
54
+ - name : Conda build for MacOS - arm64
55
+ shell : bash -l {0}
56
+ run : |
57
+ conda update --all
58
+ conda install python=3.11 conda-build anaconda-client conda-verify
59
+ conda-build carma.recipe -c conda-forge -c set3mah --output-folder .
60
+ anaconda login --username ${{ secrets.ANACONDA_USERNAME }} --password ${{ secrets.ANACONDA_PASSWORD }}
61
+ anaconda upload osx-64/*.tar.bz2 --force
62
+ anaconda logout
63
+
44
64
45
65
windows :
46
66
name : Windows
You can’t perform that action at this time.
0 commit comments