Skip to content

Commit

Permalink
fix: fixing working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatist-ban committed Feb 26, 2024
1 parent 21b92d0 commit 06c2b60
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/template-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,19 @@ 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@v3
uses: actions/cache@v1
with:
path: Elixir/Konex/deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
path: deps
key: dependencies-${{ hashFiles('Elixir/Konex/mix.lock') }}
restore-keys: mix-${{ runner.os }}-${{matrix.elixir}}-${{matrix.otp}}-

- name: Show files
run: |
Expand Down

0 comments on commit 06c2b60

Please sign in to comment.