Skip to content

Commit

Permalink
fix for build action
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Mar 11, 2024
1 parent 46b5e7a commit 1e4c4d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set output
Expand All @@ -27,7 +27,7 @@ jobs:
echo $RELEASE_VERSION
echo ${{ steps.vars.outputs.tag }}
- run: git submodule update --init
- run: sudo apt-get update && sudo apt install libjpeg-dev ninja-build
- run: sudo apt-get update && sudo apt install pcregrep libjpeg-dev ninja-build
- run: ./build.sh linux
- run: ./build.sh emscripten
- run: ./build.sh emscripten-simd
Expand Down

0 comments on commit 1e4c4d8

Please sign in to comment.