Skip to content

Commit 2e5522c

Browse files
committed
Fix output in workflow
1 parent a246c96 commit 2e5522c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/update-luau-version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525

2626
- name: Update Luau Version
2727
id: update_luau_version
28-
run: echo "LUAU_VERSION=$(scripts/update_luau_and_changelog.py)" >> $GITHUB_OUTPUT
28+
run: |
29+
version=$(scripts/update_luau_and_changelog.py | tr '\n' ' ')
30+
echo "LUAU_VERSION=$version" >> $GITHUB_OUTPUT
2931
3032
- name: Create Pull Request
3133
id: create_pull_request

0 commit comments

Comments
 (0)