Skip to content

Commit

Permalink
Another inner workflow inputs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Jul 31, 2024
1 parent eb38887 commit 02b623b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_inner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 02b623b

Please sign in to comment.