Skip to content

Commit

Permalink
outer.yml: multiline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxBlazer committed Sep 25, 2023
1 parent d985929 commit 44eb1c9
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/outer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,13 @@ jobs:
echo "commit-author=$commit_author" >> "$GITHUB_OUTPUT"
echo "commit-merger=$commit_merger" >> "$GITHUB_OUTPUT"
{
echo 'commit-message<<EOF'
$commit_message
echo EOF
} >> "$GITHUB_OUTPUT"
{
echo 'commit-description<<EOF'
$commit_description
echo EOF
} >> "$GITHUB_OUTPUT"
echo "commit-message<<EOF" >> $GITHUB_OUTPUT
echo "$commit_message" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "commit-description<<EOF" >> $GITHUB_OUTPUT
echo "$commit_description" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

# - name: Run nested workflow
# uses: ./.github/actions/inner
Expand Down

0 comments on commit 44eb1c9

Please sign in to comment.