aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2022-11-05 14:38:35 +0100
committerChristian Marangi <ansuelsmth@gmail.com>2022-12-04 17:36:59 +0100
commitb7e2e14912836a438868e2cb98ddbc4a2f44a37f (patch)
tree9d19e2c8056daecc7f0048ddd9232ddc962efe22 /.github
parent8ac2cf6de998c93c5bb4e7f2471b32fbb97aea80 (diff)
downloadupstream-b7e2e14912836a438868e2cb98ddbc4a2f44a37f.tar.gz
upstream-b7e2e14912836a438868e2cb98ddbc4a2f44a37f.tar.bz2
upstream-b7e2e14912836a438868e2cb98ddbc4a2f44a37f.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> (cherry picked from commit ce343653c2618e1d335662b924c382c0192b7b46)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kernel.yml2
-rw-r--r--.github/workflows/packages.yml2
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: |