Skip to content

Commit

Permalink
Merge pull request #554 from zeux/update-node
Browse files Browse the repository at this point in the history
Update versions of setup-node and upload-artifact
  • Loading branch information
zeux committed Apr 29, 2023
2 parents 4ea211f + a2a431a commit fbe26ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: test decoder
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: KhronosGroup/glTF-Sample-Models
path: glTF-Sample-Models
Expand All @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '14.x'
- name: install wasi
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: zeux/basis_universal
ref: gltfpack
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{matrix.os}}-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: zeux/basis_universal
ref: gltfpack
Expand All @@ -25,12 +25,12 @@ jobs:
run: cmake . -DMESHOPT_BUILD_GLTFPACK=ON -DMESHOPT_BASISU_PATH=basis_universal -DMESHOPT_WERROR=ON -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded" -DCMAKE_BUILD_TYPE=Release
- name: cmake build
run: cmake --build . --target gltfpack --config Release -j 2
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: gltfpack-windows
path: Release/gltfpack.exe
if: matrix.os == 'windows'
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: gltfpack-${{matrix.os}}
path: gltfpack
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: '14.x'
- name: install wasi
Expand All @@ -61,11 +61,11 @@ jobs:
cp LICENSE.md js/
cd gltf && npm pack && cd ..
cd js && npm pack && cd ..
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: gltfpack-npm
path: gltf/gltfpack-*.tgz
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: meshoptimizer-npm
path: js/meshoptimizer-*.tgz

0 comments on commit fbe26ff

Please sign in to comment.