From 220918cd47d93124728c959144528d76bdd88e33 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 21 Oct 2021 14:51:22 -0400 Subject: [PATCH] fix: add missing config-file option to the action --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 4c910ef35..3ce3b9dcb 100644 --- a/action.yml +++ b/action.yml @@ -9,6 +9,10 @@ inputs: description: 'Folder to place the outputs in, defaults to "wheelhouse"' required: false default: wheelhouse + config-file: + description: 'File containing the config, defaults to {package}/pyproject.toml' + required: false + default: '{package}/pyproject.toml' branding: icon: package color: yellow @@ -24,5 +28,6 @@ runs: cibuildwheel ${{ inputs.package-dir }} --output-dir ${{ inputs.output-dir }} + --config-file ${{ input.config-file }} 2>&1 shell: bash