From 55264c914f58ca9164da726c0ec03ed28c7a4cf4 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 9 Jul 2021 16:06:16 -0400 Subject: [PATCH] fix(action): use bash --- action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 5913d528..4c910ef3 100644 --- a/action.yml +++ b/action.yml @@ -17,14 +17,12 @@ runs: using: composite steps: - # This needs powershell-core because github.action path is a Windows-style - # path on Windows. Powershell-core understands both types of paths. # Redirecting stderr to stdout to fix interleaving issue in Actions. - run: > pipx run - --spec ${{ github.action_path }} + --spec '${{ github.action_path }}' cibuildwheel ${{ inputs.package-dir }} --output-dir ${{ inputs.output-dir }} 2>&1 - shell: pwsh + shell: bash