Skip to content

Commit

Permalink
try permissions w/o sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Apr 25, 2024
1 parent 3c23744 commit 1f66248
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ jobs:
- run: |
emsdk/emsdk install 2.0.23
emsdk/emsdk activate 2.0.23
chmod +rx $(which node)
# Build web
- run: sudo . emsdk/emsdk_env.sh && make vjs
- run: sudo . emsdk/emsdk_env.sh && make vjs BUILD=debug
- run: sudo . emsdk/emsdk_env.sh && make vjs BUILD=profile
- run: sudo . emsdk/emsdk_env.sh && make vjs BUILD=release TARGET=asmjs-unknown-emscripten
- run: . emsdk/emsdk_env.sh && make vjs
- run: . emsdk/emsdk_env.sh && make vjs BUILD=debug
- run: . emsdk/emsdk_env.sh && make vjs BUILD=profile
- run: . emsdk/emsdk_env.sh && make vjs BUILD=release TARGET=asmjs-unknown-emscripten
- run: npm pack
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 1f66248

Please sign in to comment.