Skip to content

Commit

Permalink
Fix input key
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverRainZ committed Mar 25, 2023
1 parent b29e0dd commit d5d6652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ runs:
steps:
- name: Checkout
uses: actions/checkout@v3
if: ${{ inputs.chekcout == 'true' && inputs.cache == 'true' }}
if: ${{ inputs.checkout == 'true' && inputs.cache == 'true' }}
with:
fetch-depth: 0 # Required by git-restore-mtime
- name: Checkout
uses: actions/checkout@v3
if: ${{ inputs.chekcout == 'true' && inputs.cache == 'false' }}
if: ${{ inputs.checkout == 'true' && inputs.cache == 'false' }}

- name: Setup python
uses: actions/setup-python@v4
Expand Down

0 comments on commit d5d6652

Please sign in to comment.