From 62a4d754427893bc6d043c6d4f5486490cab29b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20Meadows-J=C3=B6nsson?= Date: Tue, 24 Nov 2020 15:52:21 +0100 Subject: [PATCH] Also cache _build for Elixir --- examples.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples.md b/examples.md index c66eca6..53b04c7 100644 --- a/examples.md +++ b/examples.md @@ -99,7 +99,9 @@ steps: ```yaml - uses: actions/cache@v2 with: - path: deps + path: | + deps + _build key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} restore-keys: | ${{ runner.os }}-mix-