File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 VERSION : ${{ steps.vars.outputs.VERSION }}
101101 REPO_NAME : ${{ steps.vars.outputs.REPO_NAME }}
102102 run : |
103- PKG=$(ls conda-build-artifacts/${{ matrix.platform.subdir }}/${{ env.REPO_NAME }}_cpp -${{ env.VERSION }}-*.tar.bz2)
104- anaconda -t $ANACONDA_TOKEN upload " $PKG" --user $ANACONDA_USER --label main --force
105- PKG=$(ls conda-build-artifacts/${{ matrix.platform.subdir }}/${{ env.REPO_NAME }}-${{ env.VERSION }}-*.tar.bz2)
106- anaconda -t $ANACONDA_TOKEN upload "$PKG" --user $ANACONDA_USER --label main --force
103+ for PKG in conda-build-artifacts/${{ matrix.platform.subdir }}/* -${{ env.VERSION }}-*.tar.bz2; do
104+ echo "Uploading $PKG"
105+ anaconda -t $ANACONDA_TOKEN upload "$PKG" --user $ANACONDA_USER --label main --force
106+ done
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ outputs:
3737 # ---------------------------------------------------------
3838 # Output #1: Arch‐specific C++ executable (aligncount-cpp)
3939 # ---------------------------------------------------------
40- - name : {{ REPO_NAME }}_cpp
40+ - name : aligncount_cpp
4141 requirements :
4242 host :
4343 - {{ compiler("cxx") }}
@@ -51,7 +51,7 @@ outputs:
5151 # ---------------------------------------------------------
5252 # Output #2: Noarch Python wrapper (aligncount_demo)
5353 # ---------------------------------------------------------
54- - name : {{ REPO_NAME }}
54+ - name : aligncount
5555 build :
5656 noarch : python
5757 script : |
@@ -69,7 +69,7 @@ outputs:
6969 - setuptools
7070 run :
7171 - python >=3.9,<3.14
72- - {{ pin_subpackage( REPO_NAME + "_cpp ", exact=True) }}
72+ - {{ pin_subpackage("aligncount_cpp ", exact=True) }}
7373
7474
7575about :
You can’t perform that action at this time.
0 commit comments