Skip to content

Commit 43530ab

Browse files
committed
Fix GitHub CI warnings for using set-output
1 parent 8253df8 commit 43530ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/detect-app-to-build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ echo "** Version / build number changes **"
4242
echo "SimplyE: ($SIMPLYE_CHANGED)"
4343
echo "Open eBooks: ($OPENEBOOKS_CHANGED)"
4444

45-
echo "::set-output name=simplye_changed::$SIMPLYE_CHANGED"
46-
echo "::set-output name=openebooks_changed::$OPENEBOOKS_CHANGED"
47-
45+
# make values accessible to GitHub workflows
46+
echo "simplye_changed=$SIMPLYE_CHANGED" >> $GITHUB_OUTPUT
47+
echo "openebooks_changed=$OPENEBOOKS_CHANGED" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)