Skip to content

Commit bcd8d69

Browse files
committed
handle multiline
1 parent a5b822a commit bcd8d69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ jobs:
4646
- name: git status
4747
id: git_status
4848
run: |
49-
echo "status=$( git status --porcelain )" >> $GITHUB_OUTPUT
49+
echo 'status<<EOF' >> $GITHUB_OUTPUT
50+
git status --porcelain >> $GITHUB_OUTPUT
51+
echo 'EOF' >> $GITHUB_OUTPUT
5052
- name: Exit if files modified
5153
run: |
5254
echo "Files have been modified during the build process:"

0 commit comments

Comments
 (0)