From bfe07947fa6a998a597afb5329c1e5abf9d1d211 Mon Sep 17 00:00:00 2001 From: Peter Solnica Date: Wed, 18 Sep 2024 12:17:53 +0000 Subject: [PATCH] WIP --- .github/workflows/main.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aebb392e..67279dbf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -46,17 +46,17 @@ jobs: # We need to manually restore and then save, so that we can save the "_build" directory # *without* the Elixir compiled code in it. - - name: Restore Mix dependencies cache - uses: actions/cache/restore@v4 - id: mix-deps-cache - with: - path: | - _build - deps - key: | - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - restore-keys: | - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix- + # - name: Restore Mix dependencies cache + # uses: actions/cache/restore@v4 + # id: mix-deps-cache + # with: + # path: | + # _build + # deps + # key: | + # ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} + # restore-keys: | + # ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix- - name: Install and compile Mix dependencies if: steps.mix-deps-cache.outputs.cache-hit != 'true'