-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more examples, reformat input section
- Loading branch information
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,37 @@ | |
|
||
## Features | ||
* Always uses the latest stable Wasmer build | ||
* Optionally lock onto a specific wasmer version | ||
* 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: | ||
|
||
|
||
```yaml | ||
- name: Setup Wasmer | ||
uses: wasmerio/[email protected] | ||
``` | ||
Here is an example of how to use this action to install a specific version of | ||
Wasmer: | ||
```yaml | ||
- name: Setup Wasmer | ||
uses: wasmerio/[email protected] | ||
with: | ||
version: '4.2.5' | ||
``` | ||
## Input | ||
version (optional) - specify the version of wasmer to install | ||
| name | type | description | | ||
|---------|----------|------------------------------------------| | ||
| version | optional | specify the version of wasmer to install | | ||
## Output | ||
There is no output from this action | ||
|