Skip to content

Commit

Permalink
Update info.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Xikaro committed Nov 12, 2024
1 parent 7899697 commit 5b667b7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# Качаем последний пакет pakku
curl https://github.com/juraj-hrivnak/pakku/releases/latest/download/pakku.jar -o pakku.jar -L -J
echo "✔️ pakku.jar downloaded"
echo "✔️ Downloaded pakku.jar "
# Выполняем сравнение пакетов с помощью пакета pakku.jar
java -jar pakku.jar diff -v --markdown PROJECTS_DIFF.md ./pakku-lock-prev.json ./pakku-lock.json
Expand All @@ -92,16 +92,14 @@ jobs:
else
echo "❌ Error: File PROJECTS_DIFF.md not created" && exit 1
fi
- name: Format PROJECTS_DIFF.md
shell: bash
run: |
echo "📝 Formatting PROJECTS_DIFF.md..."
{
echo 'diff<<EOF'
cat -v PROJECTS_DIFF.md
echo EOF
} >> "$GITHUB_OUTPUT"

- name: Get Project Name
id: project_name
Expand Down Expand Up @@ -145,7 +143,7 @@ jobs:
echo "📃 **Game Version**: ${{ env.MINECRAFT_VERSION }}" >> $GITHUB_STEP_SUMMARY
echo "${{ steps.changelog.outputs.description }}" >> $GITHUB_STEP_SUMMARY
if [ -n "${{ steps.lockfile.outputs.diff }}" ]; then
if [ -n "${{ steps.lockfile.outputs.diff != '' }}" ]; then
echo "${{ steps.lockfile.outputs.diff }}" >> $GITHUB_STEP_SUMMARY
fi
Expand Down

0 comments on commit 5b667b7

Please sign in to comment.