Skip to content

Commit d066729

Browse files
committed
made paths relative (cache isn't working)
1 parent 8c40e47 commit d066729

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/elixir.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
uses: actions/cache@v3
4848
with:
4949
path: |
50-
/apps/**/deps
51-
/apps/**/_build
50+
apps/**/deps
51+
apps/**/_build
5252
5353
key: ${{ runner.os }}-mix-${{ env.DEFAULT_ELIXIR }}-${{ env.DEFAULT_OTP }}-${{ hashFiles('/apps/**/mix.lock') }}
5454
restore-keys: |
@@ -110,8 +110,8 @@ jobs:
110110
cache-name: cache-elixir-deps-1
111111
with:
112112
path: |
113-
deps
114-
_build
113+
apps/**/deps
114+
apps/**/_build
115115
116116
key: ${{ runner.os }}-mix-${{ env.DEFAULT_ELIXIR }}-${{ env.DEFAULT_OTP }}-${{ hashFiles('**/mix.lock') }}
117117
restore-keys: |
@@ -194,8 +194,8 @@ jobs:
194194
uses: actions/cache@v3
195195
with:
196196
path: |
197-
/apps/**/deps
198-
/apps/**/_build
197+
apps/**/deps
198+
apps/**/_build
199199
200200
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('/apps/**/mix.lock') }}
201201
restore-keys: |

0 commit comments

Comments
 (0)