Skip to content

Commit 9ea849d

Browse files
committed
Fix path to conda package
1 parent d0e527b commit 9ea849d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- uses: actions/download-artifact@v2
9696
with:
9797
name: conda-package
98-
- run: conda install noarch/scippneutron-*.tar.bz2
98+
- 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
@@ -105,19 +105,19 @@ jobs:
105105
name: docs_html
106106
path: html/
107107

108-
upload_pypi:
109-
name: Deploy PyPI
110-
needs: [build_wheels, build_sdist, build_conda]
111-
runs-on: ubuntu-20.04
112-
if: github.event_name == 'release' && github.event.action == 'published'
113-
114-
steps:
115-
- uses: actions/download-artifact@v2
116-
- uses: actions/setup-python@v3
117-
- uses: pypa/[email protected]
118-
with:
119-
user: __token__
120-
password: ${{ secrets.PYPI_TOKEN }}
108+
# upload_pypi:
109+
# name: Deploy PyPI
110+
# needs: [build_wheels, build_sdist, build_conda]
111+
# runs-on: ubuntu-20.04
112+
# if: github.event_name == 'release' && github.event.action == 'published'
113+
#
114+
# steps:
115+
# - uses: actions/download-artifact@v2
116+
# - uses: actions/setup-python@v3
117+
# - uses: pypa/[email protected]
118+
# with:
119+
# user: __token__
120+
# password: ${{ secrets.PYPI_TOKEN }}
121121

122122
upload_conda:
123123
name: Deploy Conda Forge
@@ -131,7 +131,7 @@ jobs:
131131
name: conda-package
132132
- uses: conda-incubator/setup-miniconda@v2
133133
- run: conda install -c conda-forge --yes anaconda-client
134-
- run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main $(ls conda-package/*/*.tar.bz2)
134+
- run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main $(ls conda-package/*.tar.bz2)
135135

136136
upload_docs:
137137
name: Deploy docs

0 commit comments

Comments
 (0)