From 3f1bbc35e12621df411de8b8585a3cddaaaa7016 Mon Sep 17 00:00:00 2001 From: MASES Public Developers Team <94312179+masesdevelopers@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:40:42 +0100 Subject: [PATCH] Update build.yaml Removed warning --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 41e4851..7449621 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,12 +26,12 @@ jobs: for added_modified_file in "${added_modified_files[@]}"; do if [[ $added_modified_file == ".github/workflows/build.yaml"* ]]; then echo "$added_modified_file is myself." - echo "::set-output name=run_build_windows::true" + echo "run_build_windows=true" >> $GITHUB_OUTPUT break fi if [[ $added_modified_file == "src/"* ]]; then echo "$added_modified_file file is under the directory 'src/'." - echo "::set-output name=run_build_windows::true" + echo "run_build_windows=true" >> $GITHUB_OUTPUT break fi done