From 02b623ba9a9295f8514dada6cbfc7ec5befb030c Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Wed, 31 Jul 2024 03:25:28 +0300 Subject: [PATCH] Another inner workflow inputs fix --- .github/workflows/build_inner.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_inner.yml b/.github/workflows/build_inner.yml index e426626..85589cf 100644 --- a/.github/workflows/build_inner.yml +++ b/.github/workflows/build_inner.yml @@ -56,10 +56,10 @@ jobs: - name: Parse build from source option id: build_from_source run: | - if [ ${{ inputs.build_dependencies_from_source == 'true' }} ]; then - echo argument=--build=* >> $GITHUB_OUTPUT + if [ ${{ inputs.build_dependencies_from_source }} == true ]; then + echo argument=--build=* | tee $GITHUB_OUTPUT else - echo argument=--build=missing >> $GITHUB_OUTPUT + echo argument=--build=missing | tee $GITHUB_OUTPUT fi # No need to export local packages, if the previous build jobs in this chain already published to artifactory