From 85ea69238f6053628d57e49c6f23aed341be09a5 Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Mon, 6 Sep 2021 09:36:48 +0800 Subject: [PATCH] docs: append --no-daemon option for Windows user To cache deps successfully even on Windows, it's better to add `--no-daemon` option to the Gradle build, or the save process will fail due to 'permission denied' error. refs https://github.com/actions/cache/issues/454 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17e023beb..aca7c45fe 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ steps: distribution: 'temurin' java-version: '11' cache: 'gradle' -- run: ./gradlew build +- run: ./gradlew build --no-daemon ``` #### Caching maven dependencies