Skip to content

Commit 44fc366

Browse files
authored
fix: Replaces set_gh_output with direct assignment (#650)
Taking a different tack here, this is slightly cleaner than the method call. I'm gambling that some subtlety is in play, but the fact that this script already seems to generate valid output at one stage...well hey.
1 parent 5f5ab61 commit 44fc366

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎samples/find-changes.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ echo "Changed (added or modified) subfolders in '$PROJECTS_ROOT_DIR':"
7777
echo "$UNIQUE_CHANGED_WORKSPACES"
7878

7979
# Set the output variable for GitHub Actions
80-
set_gh_output "changed_workspaces" "$UNIQUE_CHANGED_WORKSPACES"
80+
# set_gh_output "changed_workspaces" "$UNIQUE_CHANGED_WORKSPACES"
81+
echo "changed_workspaces=$UNIQUE_CHANGED_WORKSPACES" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)