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 | |
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')
-rw-r--r-- | .github/workflows/kernel.yml | 2 | ||||
-rw-r--r-- | .github/workflows/packages.yml | 2 |
2 files changed, 2 insertions, 2 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: | diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 49d795c122..05f089e66e 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -93,7 +93,7 @@ jobs: key: ${{ env.TOOLCHAIN_FILE }}-${{ env.TOOLCHAIN_SHA256 }} - 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: | |