File tree Expand file tree Collapse file tree 2 files changed +29
-33
lines changed Expand file tree Collapse file tree 2 files changed +29
-33
lines changed Original file line number Diff line number Diff line change 3
3
4
4
set -e -x
5
5
6
- python -m repo_helper make-recipe || exit 1
6
+ python -m repo_helper make-recipe || exit 1
7
7
8
- # Switch to miniconda
9
- source " /home/runner/miniconda/etc/profile.d/conda.sh"
10
- hash -r
11
- conda activate base
12
- conda config --set always_yes yes --set changeps1 no
13
- conda update -q conda
14
- conda install conda-build
15
- conda install anaconda-client
16
- conda info -a
8
+ # Switch to miniconda
9
+ source " /home/runner/miniconda/etc/profile.d/conda.sh"
10
+ hash -r
11
+ conda activate base
12
+ conda config --set always_yes yes --set changeps1 no
13
+ conda update -q conda
14
+ conda install conda-build
15
+ conda install anaconda-client
16
+ conda info -a
17
17
18
- conda config --add channels domdfcoding || exit 1
18
+ conda config --add channels domdfcoding || exit 1
19
19
20
- conda config --add channels conda-forge || exit 1
20
+ conda config --add channels conda-forge || exit 1
21
21
22
- conda build conda -c domdfcoding -c conda-forge --output-folder conda/dist --skip-existing
23
-
24
- fi
22
+ conda build conda -c domdfcoding -c conda-forge --output-folder conda/dist --skip-existing
25
23
26
24
exit 0
Original file line number Diff line number Diff line change 3
3
4
4
set -e -x
5
5
6
- # Switch to miniconda
7
- source " /home/runner/miniconda/etc/profile.d/conda.sh"
8
- hash -r
9
- conda activate base
10
- conda config --set always_yes yes --set changeps1 no
11
- conda update -q conda
12
- conda install anaconda-client
13
- conda info -a
6
+ # Switch to miniconda
7
+ source " /home/runner/miniconda/etc/profile.d/conda.sh"
8
+ hash -r
9
+ conda activate base
10
+ conda config --set always_yes yes --set changeps1 no
11
+ conda update -q conda
12
+ conda install anaconda-client
13
+ conda info -a
14
14
15
- for f in conda/dist/noarch/domdf_python_tools-* .tar.bz2; do
16
- [ -e " $f " ] || continue
17
- echo " $f "
18
- conda install " $f " || exit 1
19
- echo " Deploying to Anaconda.org..."
20
- anaconda -t " $ANACONDA_TOKEN " upload " $f " || exit 1
21
- echo " Successfully deployed to Anaconda.org."
22
- done
23
-
24
- fi
15
+ for f in conda/dist/noarch/domdf_python_tools-* .tar.bz2; do
16
+ [ -e " $f " ] || continue
17
+ echo " $f "
18
+ conda install " $f " || exit 1
19
+ echo " Deploying to Anaconda.org..."
20
+ anaconda -t " $ANACONDA_TOKEN " upload " $f " || exit 1
21
+ echo " Successfully deployed to Anaconda.org."
22
+ done
25
23
26
24
exit 0
You can’t perform that action at this time.
0 commit comments