Skip to content

wasmerio/setup-wasmer

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

setup-wasmer

Tests

GitHub action for setting up Wasmer.

Features

  • 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

Usage

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/[email protected]

Here is an example using a specific version of Wasmer:

- name: Setup Wasmer
  uses: wasmerio/[email protected]
  with:
    version: '4.2.5'

Input

name type description
version optional specify the version of wasmer to install

Output

There is no output from this action

Caveats