Skip to content

Commit 220918c

Browse files
committed
fix: add missing config-file option to the action
1 parent b488289 commit 220918c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ inputs:
99
description: 'Folder to place the outputs in, defaults to "wheelhouse"'
1010
required: false
1111
default: wheelhouse
12+
config-file:
13+
description: 'File containing the config, defaults to {package}/pyproject.toml'
14+
required: false
15+
default: '{package}/pyproject.toml'
1216
branding:
1317
icon: package
1418
color: yellow
@@ -24,5 +28,6 @@ runs:
2428
cibuildwheel
2529
${{ inputs.package-dir }}
2630
--output-dir ${{ inputs.output-dir }}
31+
--config-file ${{ input.config-file }}
2732
2>&1
2833
shell: bash

0 commit comments

Comments
 (0)