Skip to content

Commit d5d6652

Browse files
committed
Fix input key
1 parent b29e0dd commit d5d6652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ runs:
4848
steps:
4949
- name: Checkout
5050
uses: actions/checkout@v3
51-
if: ${{ inputs.chekcout == 'true' && inputs.cache == 'true' }}
51+
if: ${{ inputs.checkout == 'true' && inputs.cache == 'true' }}
5252
with:
5353
fetch-depth: 0 # Required by git-restore-mtime
5454
- name: Checkout
5555
uses: actions/checkout@v3
56-
if: ${{ inputs.chekcout == 'true' && inputs.cache == 'false' }}
56+
if: ${{ inputs.checkout == 'true' && inputs.cache == 'false' }}
5757

5858
- name: Setup python
5959
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)