Skip to content

Commit b85a6ce

Browse files
committed
fix
1 parent b4c81d0 commit b85a6ce

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/conda_release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,12 @@ jobs:
9898
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
9999
ANACONDA_USER: ${{ secrets.ANACONDA_USER }}
100100
VERSION: ${{ steps.vars.outputs.VERSION }}
101-
REPO_NAME: ${{ steps.vars.outputs.REPO_NAME }}
102101
run: |
103102
for PKG in conda-build-artifacts/${{ matrix.platform.subdir }}/*-${{ env.VERSION }}-*.tar.bz2; do
104103
echo "Uploading $PKG"
105104
anaconda -t $ANACONDA_TOKEN upload "$PKG" --user $ANACONDA_USER --label main --force
105+
done
106+
for PKG in conda-build-artifacts/noarch/*-${{ env.VERSION }}-*.tar.bz2; do
107+
echo "Uploading $PKG"
108+
anaconda -t $ANACONDA_TOKEN upload "$PKG" --user $ANACONDA_USER --label main --force
106109
done

0 commit comments

Comments
 (0)