File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 3232
3333 - uses : actions/upload-artifact@v2
3434 with :
35- name : conda-package-${{ matrix.variant.os }}-py${{ matrix.python-version }}
35+ name : conda-package
3636 path : conda/package/noarch/scippneutron*.tar.bz2
3737
3838 build_sdist :
@@ -94,15 +94,15 @@ jobs:
9494 extra-specs : python=3.8
9595 - uses : actions/download-artifact@v2
9696 with :
97- name : conda-package-ubuntu-20.04-py3.8
97+ name : conda-package
9898 - run : conda install noarch/scippneutron-*.tar.bz2
9999 - run : |
100100 python -m sphinx -j2 -v -b html -d doctrees docs html
101101 python -m sphinx -j2 -v -b doctest -d doctrees docs html
102102 find html -type f -name "*.ipynb" -not -path "html/_sources/*" -delete
103103 - uses : actions/upload-artifact@v2
104104 with :
105- name : html
105+ name : docs_html
106106 path : html/
107107
108108 upload_pypi :
@@ -127,6 +127,8 @@ jobs:
127127
128128 steps :
129129 - uses : actions/download-artifact@v2
130+ with :
131+ name : conda-package
130132 - uses : conda-incubator/setup-miniconda@v2
131133 - run : conda install -c conda-forge --yes anaconda-client
132134 - run : anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main $(ls conda-package-*/*/*.tar.bz2)
@@ -144,6 +146,8 @@ jobs:
144146 steps :
145147 - uses : actions/checkout@v3 # Need to check out repo so github-pages-deploy-action works
146148 - uses : actions/download-artifact@v2
149+ with :
150+ name : docs_html
147151 - name : Deploy to release docs
148152149153 with :
You can’t perform that action at this time.
0 commit comments