Skip to content

Commit

Permalink
Update package name references in workflow
Browse files Browse the repository at this point in the history
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 <borreguero@gmail.com>
  • Loading branch information
jmborr committed Aug 26, 2024
1 parent 33c84ec commit f380e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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

0 comments on commit f380e14

Please sign in to comment.