Skip to content

Commit

Permalink
format brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Oct 24, 2024
1 parent ae5abed commit c0ab252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit c0ab252

Please sign in to comment.