From c0ab2525c88106c7b7eba9e98f58a8344d457b2a Mon Sep 17 00:00:00 2001 From: Angelyr Date: Thu, 24 Oct 2024 09:59:22 -0700 Subject: [PATCH] format brackets --- .github/actions/install-repo/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-repo/action.yml b/.github/actions/install-repo/action.yml index 760663b8..16f259a9 100644 --- a/.github/actions/install-repo/action.yml +++ b/.github/actions/install-repo/action.yml @@ -21,11 +21,11 @@ runs: key: build-${{inputs.repo-name}} path: ${{ runner.temp }}/build-${{inputs.repo-name}} - - if: ${{ steps['build-kokkos'].outputs.cache-hit == 'false'}} + - if: ${{ steps[format('build-{0}', inputs.repo-name)].outputs.cache-hit == 'false'}} shell: bash run: echo "hello false" - - if: ${{ steps['build-kokkos'].outputs.cache-hit == 'true'}} + - if: ${{ steps[format('build-{0}', inputs.repo-name)].outputs.cache-hit == 'true'}} shell: bash run: echo "hello true"