Skip to content

Commit

Permalink
fix: fixing working directory using mix lock at parent 5
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatist-ban committed Feb 26, 2024
1 parent c41cb87 commit 52b1fe0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/template-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ jobs:
echo "$VER"
echo "RELEASE_VERSION=$VER" >> $GITHUB_ENV
echo "RELEASE_VERSION -> ${{ env.RELEASE_VERSION }}"
mkdir -p Elixir/Konex/deps && mkdir -p deps
- name: Restore dependencies cache
uses: actions/cache@v4
Expand All @@ -91,15 +90,17 @@ jobs:
uses: actions/cache@v4
with:
path: Elixir/Konex/deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/Elixir/Konex/mix.lock') }}
restore-keys: mix-${{ runner.os }}-
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-2

- name: Show files
run: |
ls
echo "------------------------------"
ls Elixir/Konex/
echo "------------------------------"
ls deps
echo "------------------------------"
# - name: Install dependencies
# run: mix deps.get
Expand Down

0 comments on commit 52b1fe0

Please sign in to comment.