From 9ed69c53f9006de5d7db016bf73ddee17e2e2d63 Mon Sep 17 00:00:00 2001 From: Terry Wong Date: Thu, 7 Nov 2024 19:02:37 +0800 Subject: [PATCH] add builder arg to README.md Signed-off-by: Terry Wong --- README.md | 1 + action.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75100f3..2ead991 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Options: --cache-map The map of actions source to container destination paths for the cache paths --scratch-dir Where the action is stores some temporary files for its processing. Default: 'scratch' --skip-extraction Skip the extraction of the cache from the docker container + --builder The name of the builder. Default: 'default' --help Show this help ``` diff --git a/action.yml b/action.yml index 8fb7f0b..1eddf04 100644 --- a/action.yml +++ b/action.yml @@ -20,8 +20,8 @@ inputs: default: "false" description: "Run the post step to save the cache even if another step before fails" builder: - default: "default" - description: "The name of the builder to use for the cache injection" + default: default + description: "The name of the builder. Default: 'default'" runs: using: 'node20' main: 'dist/index.js'