Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Xikaro committed Oct 25, 2024
1 parent 2e3f041 commit ad142ed
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
echo "✔️ pakku.json"
fi
- name: Check lockfile
- name: Get previous lockfile
shell: bash
run: |
set +e
Expand All @@ -62,7 +62,6 @@ jobs:
java -jar ./pakku.jar diff ./pakku-lock-prev.json ./pakku-lock.json -v --markdown PROJECTS_DIFF.md
else
echo "❌ File pakku-lock.json not found in previous tag"
touch PROJECTS_DIFF.md
fi
fi
Expand Down Expand Up @@ -94,7 +93,11 @@ jobs:

- name: Diff Mod
id: diff
run: cat PROJECTS_DIFF.md
run: |
if [ ! -f PROJECTS_DIFF.md ]; then
touch PROJECTS_DIFF.md
fi
cat PROJECTS_DIFF.md
- name: Generate list using Markdown
run: |
Expand Down

0 comments on commit ad142ed

Please sign in to comment.