From b552fbd016bf1394c6b7de96d5bf98dde5b17730 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 30 Jun 2021 18:10:01 -0400 Subject: [PATCH] fix(action): Output a single stream (#741) --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index 6429ff78..5913d528 100644 --- a/action.yml +++ b/action.yml @@ -19,10 +19,12 @@ runs: # 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 }} cibuildwheel ${{ inputs.package-dir }} --output-dir ${{ inputs.output-dir }} + 2>&1 shell: pwsh