diff --git a/.github/workflows/deploy_conda_package.yml b/.github/workflows/deploy_conda_package.yml index 48fde8bf3..4aa453fb3 100644 --- a/.github/workflows/deploy_conda_package.yml +++ b/.github/workflows/deploy_conda_package.yml @@ -73,8 +73,13 @@ jobs: echo "TACS_DIR=${GITHUB_WORKSPACE}" >> $GITHUB_ENV; export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }}; export BUILD_ARGS="--no-include-recipe ${{ matrix.EXTRA_ARGS }}"; + if [[ ${{ matrix.SCALAR }} == "complex" ]]; then + export LABEL="complex" + elif [[ ${{ matrix.SCALAR }} == "real" ]]; then + export LABEL="main" + fi conda install anaconda-client conda-build conda-verify -q -y; conda config --set anaconda_upload no; cd ${TACS_DIR}/conda; conda build --variants "{scalar: ${{ matrix.SCALAR }}}" -c conda-forge -c smdogroup $BUILD_ARGS --output-folder . .; - anaconda upload --label ${{ matrix.LABEL }}} ${{ matrix.TARGET }}/*.tar.bz2 --force; + anaconda upload --label LABEL ${{ matrix.TARGET }}/*.tar.bz2 --force;