From 380cc927a2f397b625abd4bb9b6714f2cd875a03 Mon Sep 17 00:00:00 2001 From: "Evgenij (Eugene) Beloded" Date: Wed, 2 Jun 2021 10:47:41 +0700 Subject: [PATCH] Set correct path on windows Co-authored-by: Amin Yahyaabadi --- examples.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples.md b/examples.md index 0f46161..394ca0e 100644 --- a/examples.md +++ b/examples.md @@ -246,7 +246,9 @@ The yarn cache directory will depend on your operating system and version of `ya - name: Cache .pnpm-store uses: actions/cache@v2 with: - path: ~/.pnpm-store + path: | + ~/.pnpm-store + D:\.pnpm-store key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}``` ```