Skip to content

Commit

Permalink
Update set-output command (#1101)
Browse files Browse the repository at this point in the history
  • Loading branch information
araujoarthur0 authored Dec 31, 2024
1 parent 2be90f0 commit 53cc611
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/localization-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
body=$(cat comparison.md)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
echo ::set-output name=log::$body
body="${body//$'\r'/'%0D'}"
echo "log=$body" >> $GITHUB_OUTPUT
- uses: tibdex/github-app-token@v1
id: generate-token
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-missing-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
body=$(cat missing.md)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
echo ::set-output name=body::$body
body="${body//$'\r'/'%0D'}"
echo "body=$body" >> $GITHUB_OUTPUT
- name: Update comment
uses: peter-evans/create-or-update-comment@v1
with:
Expand Down

0 comments on commit 53cc611

Please sign in to comment.