diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-11-05 14:38:35 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-12-03 02:57:30 +0100 |
commit | ce343653c2618e1d335662b924c382c0192b7b46 (patch) | |
tree | 56f8cc754a569f88aa20e8379152bdc83813a32d /.github/workflows/kernel.yml | |
parent | 5429411f732ba76eced30b5b596ec9c0374d0965 (diff) | |
download | upstream-ce343653c2618e1d335662b924c382c0192b7b46.tar.gz upstream-ce343653c2618e1d335662b924c382c0192b7b46.tar.bz2 upstream-ce343653c2618e1d335662b924c382c0192b7b46.zip |
CI: Simplify if conditions
There is no need to put a ${{ }} around the if conditions.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to '.github/workflows/kernel.yml')
-rw-r--r-- | .github/workflows/kernel.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 773e843bfd..a204be3395 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -156,7 +156,7 @@ jobs: ccache-kernel-${{ env.TARGET }}/${{ env.SUBTARGET }}- - name: Download external toolchain - if: ${{ steps.cache-external-toolchain.outputs.cache-hit != 'true' }} + if: steps.cache-external-toolchain.outputs.cache-hit != 'true' shell: su buildbot -c "sh -e {0}" working-directory: openwrt run: | |