Skip to content

Commit

Permalink
add support for arbitrary conda-build arguments (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp authored Feb 7, 2022
1 parent 4af781a commit 6c22d75
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion canary-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ inputs:
anaconda-org-token:
description: 'Upload token for anaconda.org'
required: true
conda-build-arguments:
description: 'Command line arguments for conda-build, inserted before recipe path with no processing.'
required: false
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -69,7 +72,7 @@ runs:
echo "::endgroup::"
echo "::group::Building package"
conda build --croot=./pkgs conda.recipe
conda build --croot=./pkgs ${{ inputs.conda-build-arguments }} conda.recipe
echo "::endgroup::"
echo "::group::Uploading package"
Expand Down

0 comments on commit 6c22d75

Please sign in to comment.