Skip to content

Commit

Permalink
fix(ci): correct path to be shown
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective committed Apr 13, 2024
1 parent ad0eeb2 commit d3e09c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
mv "$OLD" "${OLD}.old.txt"
NEW="$(mktemp)"
mv "$NEW" "${NEW}.new.txt"
jq -rs '.old' < "$H" > "$OLD"
jq -rs '.new' < "$H" > "$NEW"
jq -rs '.[0].oldConfig' < "$H" > "$OLD"
jq -rs '.[1].newConfig' < "$H" > "$NEW"
DIFF_TO_BE_REPORTED="$(mktemp)"
mv "$DIFF_TO_BE_REPORTED" "${DIFF_TO_BE_REPORTED}.diff"
Expand Down

0 comments on commit d3e09c2

Please sign in to comment.