Skip to content

Commit

Permalink
fix: Multiline strings in update flake action
Browse files Browse the repository at this point in the history
  • Loading branch information
lpchaim committed Oct 5, 2024
1 parent b509255 commit d851f3a
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/update-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,19 @@ jobs:
id: vars
run: |
{
echo "update-stdout=$(cat update.stdout)"
echo "update-stderr=$(cat update.stderr)"
echo "check-stdout=$(cat check.stdout)"
echo "check-stderr=$(cat check.stderr)"
} > "$GITHUB_OUTPUT"
echo 'update-stdout<<EOF'
cat update.stdout
echo EOF
echo 'update-stderr<<EOF'
cat update.stderr
echo EOF
echo 'check-stdout<<EOF'
cat check.stdout
echo EOF
echo 'check-stderr<<EOF'
cat check.stderr
echo EOF
} >> "$GITHUB_OUTPUT"
- name: Create PR
uses: technote-space/create-pr-action@v2
with:
Expand Down

0 comments on commit d851f3a

Please sign in to comment.