Skip to content

Commit

Permalink
Merge pull request #963 from mantidproject/test_current_mamba_build
Browse files Browse the repository at this point in the history
Replaced conda build with conda mambabuild
  • Loading branch information
SilkeSchomann authored Feb 15, 2024
2 parents bdb3b69 + 278e8f7 commit 2a7324b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/publish-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
conda config --set always_yes yes --set changeps1 no
conda create -n build-env python=3.10
conda activate build-env
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa
conda config --add channels mantid
conda config --add channels mantid/label/nightly
Expand All @@ -33,5 +33,5 @@ runs:
run: |
conda activate build-env
conda config --set anaconda_upload yes
conda build --user ${{ inputs.repository }} --token ${{ inputs.token }} --label ${{ inputs.label }} $GITHUB_WORKSPACE/conda |& tee upload.log
conda mambabuild --user ${{ inputs.repository }} --token ${{ inputs.token }} --label ${{ inputs.label }} $GITHUB_WORKSPACE/conda |& tee upload.log
grep "Upload complete" upload.log

0 comments on commit 2a7324b

Please sign in to comment.