From f68c1e70e42cf5f7cf272de59e00b0ba31fc0836 Mon Sep 17 00:00:00 2001 From: Brendan Early Date: Wed, 8 Apr 2026 17:00:18 -0500 Subject: [PATCH] Update readme options documentation to match action.yml options --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9089db9..39de001 100644 --- a/README.md +++ b/README.md @@ -67,15 +67,15 @@ jobs: run: make check ``` -## Options +## Common Options ```yaml version: - description: 'Version to install' - default: 'latest' + description: "Version emscripten to install" + default: "latest" emsdk-version: - description: 'The version of emsdk that gets downloaded instead of making it the same as version' - default: '' + description: "Version of emsdk to install (set if not the same as emscripten version)" + default: "" no-install: description: "If true will not download any version of Emscripten. emsdk will still be added to PATH." default: false @@ -84,10 +84,10 @@ no-cache: default: false actions-cache-folder: description: "Directory to cache emsdk in. This folder will go under $GITHUB_HOME (I.e. build dir) and be cached using @actions/cache." - default: '' + default: "" update: description: "Fetch package information for all the new tools and SDK versions" default: false ``` -See [action.yml](action.yml) +See [action.yml](action.yml) for all options