File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed
Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Conda Build
2+
3+ on :
4+ push :
5+ branches :
6+ - stable
7+ jobs :
8+ build-linux :
9+ runs-on : ubuntu-latest
10+ defaults :
11+ run :
12+ shell : bash -l {0}
13+ steps :
14+ - uses : actions/checkout@v2
15+ - uses : conda-incubator/setup-miniconda@v2
16+ - name : Conda info
17+ run : |
18+ conda info
19+ conda list
20+ - name : Build Binary
21+ env :
22+ CONDA_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
23+ run : |
24+ conda install -y conda-build
25+ conda install -y anaconda-client
26+ conda config --add channels rmg
27+ conda config --set anaconda_upload yes
28+ conda build --token $CONDA_TOKEN --user rmg .conda
29+ build-osx :
30+ runs-on : macos-latest
31+ defaults :
32+ run :
33+ shell : bash -l {0}
34+ steps :
35+ - uses : actions/checkout@v2
36+ - uses : conda-incubator/setup-miniconda@v2
37+ - name : Conda info
38+ run : |
39+ conda info
40+ conda list
41+ - name : Build Binary
42+ env :
43+ CONDA_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
44+ run : |
45+ conda install -y conda-build
46+ conda install -y anaconda-client
47+ conda config --add channels rmg
48+ conda config --set anaconda_upload yes
49+ conda build --token $CONDA_TOKEN --user rmg .conda
You can’t perform that action at this time.
0 commit comments