Skip to content

Commit

Permalink
trying to persist changes to PATH between steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhold committed Nov 9, 2023
1 parent 604c993 commit 4b4e2aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
cd emsdk
./emsdk install latest
./emsdk activate latest
source ./emsdk_env.sh
echo "EMSDK_PATH=$(pwd)/emsdk" >> $GITHUB_ENV
echo "EMSDK_NODE=$(pwd)/node/14.15.5_64bit/bin" >> $GITHUB_ENV
echo "EMSCRIPTEN=$(pwd)/upstream/emscripten" >> $GITHUB_ENV
echo "PATH=$(pwd):$(pwd)/upstream/emscripten:$(pwd)/node/14.15.5_64bit/bin:$PATH" >> $GITHUB_ENV
echo "PATH=$(pwd):/home/runner/work/laszlo/laszlo/emsdk:/home/runner/work/laszlo/laszlo/emsdk/upstream/emscripten:$PATH" >> $GITHUB_ENV
cd ..
- name: Create Build Directory
Expand Down

0 comments on commit 4b4e2aa

Please sign in to comment.