From 7380804abd6c2a6c5cdcbe9f3f8c8e274eae3b50 Mon Sep 17 00:00:00 2001 From: Jet Li Date: Fri, 13 Mar 2020 10:43:21 +0800 Subject: [PATCH] Rename action name --- README.md | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 11a4305..43cf1e2 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ wasm-pack-action status

-# `wasm-pack` action +# `wasm-pack-action` Install `wasm-pack` by downloading the executable (faster than `cargo install wasm-pack`, seconds vs minutes). ## Usage ```yaml -- uses: jetli/wasm-pack@v0.1.0 +- uses: jetli/wasm-pack-action@v0.1.0 with: # Optional version of wasm-pack to install(eg. '0.9.1', 'latest') version: 'latest' diff --git a/action.yml b/action.yml index 424a0fb..f22d62d 100644 --- a/action.yml +++ b/action.yml @@ -1,9 +1,9 @@ -name: 'wasm-pack' +name: 'wasm-pack-action' description: 'Install `wasm-pack` by downloading the executable (faster than `cargo install wasm-pack`, seconds vs minutes).' author: 'jetli' inputs: version: - description: 'Version of wasm-pack to install (eg. "0.9.1", "latest")' + description: 'Optional version of wasm-pack to install (eg. "0.9.1", "latest")' default: 'latest' runs: using: 'node12'