File tree Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Expand file tree Collapse file tree 2 files changed +1
-31
lines changed Original file line number Diff line number Diff line change 3434 conda :
3535 uses : ./.github/workflows/condaWF.yml
3636 secrets : inherit
37- strategy :
38- fail-fast : false
39- matrix :
40- os : [ubuntu-22.04, macos-14 ]
41- runs-on : ${{ matrix.os }}
42- steps :
43- - uses : actions/checkout@v4
44- - name : Install conda
45- run : |
46- curl -LO https://raw.githubusercontent.com/GiovanniBussi/conda-ci/master/conda-ci
47- source ./conda-ci install
48- source ./conda-ci install-conda-build
49- - name : Build PLUMED
50- run : |
51- source activate base
52- export VERSION=none
53- if [[ $GITHUB_REF == "refs/tags/"* ]]; then
54- VERSION=${GITHUB_REF#refs/tags/}
55- VERSION=${VERSION//-/_}
56- VERSION=${VERSION#v}
57- fi
58- make -C conda
59- - name : Deploy
60- env :
61- CONDA_UPLOAD_TOKEN : ${{ secrets.CONDA_UPLOAD_TOKEN }}
62- if : ${{ startsWith( github.ref , 'refs/tags/' ) }}
63- run : |
64- source activate base
65- export CONDA_LABEL=tag
66- make -C conda upload
Original file line number Diff line number Diff line change 1818 strategy :
1919 fail-fast : false
2020 matrix :
21- os : [ubuntu-22.04 , macos-13 , macos- 14 ]
21+ os : [ubuntu-22.04 , macos-14 ]
2222 runs-on : ${{ matrix.os }}
2323 steps :
2424 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments