From 49b4653853b93dd1688fbde649fced12be9c7c01 Mon Sep 17 00:00:00 2001 From: Ettore Pasquini Date: Mon, 5 Feb 2024 12:01:16 -0800 Subject: [PATCH] Fix GitHub CI warnings for using set-output --- .github/workflows/archive-and-upload.yml | 1 + scripts/detect-app-to-build.sh | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/archive-and-upload.yml b/.github/workflows/archive-and-upload.yml index bd16e3334..f443658dd 100644 --- a/.github/workflows/archive-and-upload.yml +++ b/.github/workflows/archive-and-upload.yml @@ -5,6 +5,7 @@ on: - develop - release/** - feature/** + - IOS-631/publicationBaseURL-crash jobs: version-check: runs-on: macOS-13 diff --git a/scripts/detect-app-to-build.sh b/scripts/detect-app-to-build.sh index fb8c5aeef..043899e00 100755 --- a/scripts/detect-app-to-build.sh +++ b/scripts/detect-app-to-build.sh @@ -42,6 +42,6 @@ echo "** Version / build number changes **" echo "SimplyE: ($SIMPLYE_CHANGED)" echo "Open eBooks: ($OPENEBOOKS_CHANGED)" -echo "::set-output name=simplye_changed::$SIMPLYE_CHANGED" -echo "::set-output name=openebooks_changed::$OPENEBOOKS_CHANGED" - +# make values accessible to GitHub workflows +echo "simplye_changed=$SIMPLYE_CHANGED" >> $GITHUB_OUTPUT +echo "openebooks_changed=$OPENEBOOKS_CHANGED" >> $GITHUB_OUTPUT