From 38c7d248a58a0baf3c3a4736eca17e6d0defbd01 Mon Sep 17 00:00:00 2001 From: Peter Donovan Date: Mon, 24 Jul 2023 15:18:01 -0700 Subject: [PATCH] Fix logical error in build action. --- .github/actions/build/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 074c2c01d..a33f750db 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -9,7 +9,7 @@ inputs: partial: description: Skip the installation of extra dependencies required: false - default: true + default: false runs: using: "composite" @@ -46,21 +46,21 @@ runs: - name: Install pylint run: python3 -m pip install pylint shell: bash - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Install pnpm run: npm i -g pnpm shell: bash - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Setup Rust uses: ATiltedTree/setup-rust@v1 with: rust-version: stable components: clippy - if: ${{ inputs.partial == 'true' }} + if: ${{ inputs.partial == 'false' }} - name: Install RTI run: | cd lingua-franca .github/actions/install-rti/install.sh cd .. shell: bash - if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'true' }} + if: ${{ (runner.os == 'macOS' || runner.os == 'Linux') && inputs.partial == 'false' }}