CI: Add the extracted wabt package to the PATH

Unlike Azure, we can't just set the PATH environment variable in GitHub
Actions. We must add it using a special GITHUB_PATH file.
This commit is contained in:
Timothy Flynn 2024-05-07 21:41:25 -04:00 committed by Andrew Kaster
parent d67b52853a
commit d7dc279ba8
Notes: sideshowbarker 2024-07-17 05:19:06 +09:00

View File

@ -41,6 +41,7 @@ runs:
wget https://github.com/WebAssembly/wabt/releases/download/1.0.23/wabt-1.0.23-ubuntu.tar.gz
tar -xzf ./wabt-1.0.23-ubuntu.tar.gz
rm ./wabt-1.0.23-ubuntu.tar.gz
echo "${{ github.workspace }}/wabt-1.0.23/bin" >> $GITHUB_PATH
- name: 'Install JS dependencies'
if: ${{ inputs.os == 'Linux' || inputs.os == 'Serenity' }}