mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-05-08 21:48:02 +00:00
19 lines
432 B
YAML
19 lines
432 B
YAML
name: "Get Emscripten SDK"
|
|
inputs:
|
|
version:
|
|
description: ""
|
|
required: false
|
|
default: "3.1.64"
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: install emsdk
|
|
shell: bash
|
|
run: |
|
|
git clone https://github.com/emscripten-core/emsdk.git ./emsdk/
|
|
cd emsdk
|
|
git checkout tags/${{ inputs.version }}
|
|
./emsdk install ${{ inputs.version }}
|
|
./emsdk activate ${{ inputs.version }}
|