File tree 1 file changed +0
-21
lines changed 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change 41
41
shell : bash -l {0}
42
42
run : |
43
43
conda build -q conda-recipe --package-format=1
44
- - name : Upload noarch conda package to NNPDF server
45
- if : ${{ (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) && startsWith(matrix.os, 'ubuntu') }}
46
- shell : bash -l {0}
47
- run : |
48
- KEY=$( mktemp )
49
- echo "$NNPDF_SSH_KEY" | base64 --decode > "$KEY"
50
- scp -i "$KEY" -o StrictHostKeyChecking=no\
51
- $CONDA_PREFIX/conda-bld/noarch/*.tar.bz2 \
52
- dummy@packages.nnpdf.science:~/packages/conda/noarch
53
- - name : Build and upload sphinx documentation to NNPDF server
54
- if : startsWith(matrix.os, 'ubuntu') && github.ref == 'refs/heads/master'
55
- shell : bash -l {0}
56
- run : |
57
- KEY=$( mktemp )
58
- echo "$NNPDF_SSH_KEY" | base64 --decode > "$KEY"
59
- conda install nnpdf --yes
60
- cd doc/sphinx
61
- make html
62
- scp -r -i "$KEY" -o StrictHostKeyChecking=no\
63
- build/html/* \
64
- dummy@packages.nnpdf.science:~/sphinx-docs/
You can’t perform that action at this time.
0 commit comments