GitHub action for setting up Wasmer.
- Always uses the latest stable Wasmer build
- Optionally lock onto a specific wasmer version
- Cross platform (Linux, Mac, and Windows)
- Automatically updates environment variables (So you can immediately start using Wasmer)
- Fully tested
The easiest way to use this action is to use the latest stable version of Wasmer. This can be done by using the following configuration:
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v3.1
Here is an example using a specific version of Wasmer:
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v3.1
with:
version: '4.2.5'
name | type | description |
---|---|---|
version |
optional | specify the version of wasmer to install |
There is no output from this action
- Doesn't install Wasienv (Use the Docker image instead)