From aa9e491cf86376446b1ce7d9c6c00c45e8edbde8 Mon Sep 17 00:00:00 2001 From: Tomas Dabasinskas Date: Fri, 15 Oct 2021 13:30:39 +0300 Subject: [PATCH] Add skip-cache parameter --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 10521ab..df937a6 100644 --- a/action.yml +++ b/action.yml @@ -28,6 +28,10 @@ inputs: description: "if set to true then the action doesn't cache or restore ~/.cache/go-build." default: false required: true + skip-cache: + description: "if set to true then the all caching functionality willl be complete disabled." + default: false + required: true runs: using: "node16" main: "dist/run/index.js"