From d7dc279ba8525d56b775db4f03b2cba5f4a98201 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 7 May 2024 21:41:25 -0400 Subject: [PATCH] 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. --- .github/actions/setup/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 9e218249f5..409cf3386e 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -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' }}