Skip to content

Commit

Permalink
fix: fixing working directory using mix lock at parent 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatist-ban committed Feb 26, 2024
1 parent e463ed4 commit 078b78d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/template-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,18 +79,18 @@ jobs:
echo "RELEASE_VERSION=$VER" >> $GITHUB_ENV
echo "RELEASE_VERSION -> ${{ env.RELEASE_VERSION }}"
# - name: Restore dependencies cache
# uses: actions/cache@v3
# with:
# path: Elixir/Konex/deps
# key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
# restore-keys: ${{ runner.os }}-mix-

- name: Restore dependencies cache
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: deps
key: dependencies-${{ hashFiles('Elixir/Konex/mix.lock') }}
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-

- name: Restore dependencies cache 2
uses: actions/cache@v1
with:
path: Elixir/Konex/deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/Elixir/Konex/mix.lock') }}
restore-keys: mix-${{ runner.os }}-${{matrix.elixir}}-${{matrix.otp}}-

- name: Show files
Expand Down

0 comments on commit 078b78d

Please sign in to comment.