13 lines
443 B
YAML
13 lines
443 B
YAML
name: "Install SoX and add to PATH"
|
|
description: "Install SoX and add to PATH"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: |
|
|
set -ex
|
|
wget https://sourceforge.net/projects/sox/files/sox/14.4.2/sox-14.4.2-win32.zip/download -O sox-14.4.2-win32.zip
|
|
"C:/Program Files/7-Zip/7z.exe" x -o`pwd`/bin/ -tzip -aoa sox-14.4.2-win32.zip
|
|
rm sox-*zip
|
|
echo "`pwd`/bin/sox-14.4.2/" >> $GITHUB_PATH
|
|
shell: bash
|