Skip to content

Commit d5b0cc4

Browse files
committed
Fix artifact names
1 parent 98b1481 commit d5b0cc4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
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
148152
uses: JamesIves/[email protected]
149153
with:

0 commit comments

Comments
 (0)