Skip to content

Commit

Permalink
Use EOF to preserve formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Nov 21, 2024
1 parent 5cd36a7 commit ef1855a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/fix_translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
git fetch origin ${{ github.event.pull_request.base.ref }}:refs/remotes/origin/${{ github.event.pull_request.base.ref }}
modified_files=$(git diff --name-only origin/${{ github.event.pull_request.base.ref }}...${{ github.event.pull_request.head.ref }})
echo "modified_files=$modified_files" >> $GITHUB_ENV
echo "modified_files=$modified_files" >> $GITHUB_OUTPUT
echo "modified_files<<EOF" >> $GITHUB_OUTPUT
echo "$modified_files" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Run translation fixes script
run: |
Expand Down

0 comments on commit ef1855a

Please sign in to comment.