From f380e143906fc7b1bff7e509d9c6405b037ead58 Mon Sep 17 00:00:00 2001 From: Jose Borreguero Date: Mon, 26 Aug 2024 17:17:13 -0400 Subject: [PATCH] Update package name references in workflow Changed the package name from 'mypackagename' to 'webmonchow' in the conda verification and upload steps. This ensures the correct package is processed and uploaded during the GitHub Actions workflow. Signed-off-by: Jose Borreguero --- .github/workflows/package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 3ba0073..f199a1b 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -31,7 +31,7 @@ jobs: echo "versioningit $(versioningit ../)" # build the package VERSION=$(versioningit ../) conda mambabuild --channel conda-forge --output-folder . . - conda verify noarch/mypackagename*.tar.bz2 + conda verify noarch/webmonchow*.tar.bz2 - name: upload conda package to anaconda shell: bash -l {0} if: startsWith(github.ref, 'refs/tags/v') @@ -43,4 +43,4 @@ jobs: CONDA_LABEL="main" if [ "${IS_RC}" = "true" ]; then CONDA_LABEL="rc"; fi echo pushing ${{ github.ref }} with label $CONDA_LABEL - anaconda upload --label $CONDA_LABEL conda.recipe/noarch/mypackagename*.tar.bz2 + anaconda upload --label $CONDA_LABEL conda.recipe/noarch/webmonchow*.tar.bz2