Merge pull request #753 from henryiii/henryiii/fix/revert

fix(action): use bash instead of powershell
This commit is contained in:
Joe Rickerby
2021-07-09 22:16:33 +01:00
committed by GitHub
+2 -4
View File
@@ -17,14 +17,12 @@ runs:
using: composite using: composite
steps: 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. # Redirecting stderr to stdout to fix interleaving issue in Actions.
- run: > - run: >
pipx run pipx run
--spec ${{ github.action_path }} --spec '${{ github.action_path }}'
cibuildwheel cibuildwheel
${{ inputs.package-dir }} ${{ inputs.package-dir }}
--output-dir ${{ inputs.output-dir }} --output-dir ${{ inputs.output-dir }}
2>&1 2>&1
shell: pwsh shell: bash