Skip to content

Commit

Permalink
Fix comparison with string in TRIK toolchain CI
Browse files Browse the repository at this point in the history
  • Loading branch information
WoWaster authored and iakov committed Sep 11, 2023
1 parent b58f84d commit 7aee5cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trik-toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
|| echo "install=true" >> $GITHUB_OUTPUT
- name: Install TRIK toolchain
if: steps.trik-toolchain-check.outputs.install == true
if: steps.trik-toolchain-check.outputs.install == 'true'
run: |
rm -rf /opt/trik-sdk
curl -O https://dl.trikset.com/distro/latest-full/trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh
Expand All @@ -43,7 +43,7 @@ jobs:
mv trik-sdk-x86_64-arm926ejse-toolchain-trik-nodistro.0.sh.sha256 /opt/trik-sdk
- name: Save TRIK toolchain
if: steps.trik-toolchain-check.outputs.install == true
if: steps.trik-toolchain-check.outputs.install == 'true'
uses: actions/cache/save@v3
with:
path: /opt/trik-sdk
Expand Down

0 comments on commit 7aee5cd

Please sign in to comment.