From e7c0428bb43cf0bf74c7c2bcce64341050bf70fb Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 30 Jan 2024 10:54:57 -0500 Subject: [PATCH] fix: simplify action quoting on Windows Signed-off-by: Henry Schreiner --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index ab07817dc..06e3645fe 100644 --- a/action.yml +++ b/action.yml @@ -52,8 +52,8 @@ runs: --spec "${{ github.action_path }}" cibuildwheel "${{ inputs.package-dir }}" - --output-dir '"${{ inputs.output-dir }}"' - --config-file '"${{ inputs.config-file }}"' - --only '"${{ inputs.only }}"' + --output-dir "${{ inputs.output-dir }}" + --config-file "${{ inputs.config-file }}" + --only "${{ inputs.only }}" shell: pwsh if: runner.os == 'Windows'