Skip to content

Commit

Permalink
try multiline string storage
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 25, 2023
1 parent d85c021 commit 1b731b7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
id: update
run: |
poetry run poetry self update
poetry run poetry update
UPDATE_OUTPUT = $(poetry run poetry update)
status=$(git status | grep poetry.lock)
echo "status=$status" >> $GITHUB_OUTPUT
echo "UPDATE_OUTPUT<<EOF" >> $GITHUB_OUTPUT
echo "$UPDATE_OUTPUT" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
# create pull request if necessary
- name: "Create Pull Request"
Expand All @@ -47,4 +50,4 @@ jobs:
title: "Update dependencies"
body: |
- Dependency updates
${{ steps.update.outputs.update_output }}
- ${{ steps.update.outputs.UPDATE_OUTPUT }}

0 comments on commit 1b731b7

Please sign in to comment.