Skip to content

Commit

Permalink
Try to fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
TimJentzsch committed Jul 20, 2024
1 parent f8b3ae4 commit b46a3eb
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 @@ -114,7 +114,7 @@ runs:
- name: Restore and save cache
id: cache
uses: actions/cache@v4
if: ${{ inputs.save-if == "true" }}
if: ${{ inputs.save-if == 'true' }}
with:
save-always: ${{ inputs.save-always }}
path: |
Expand All @@ -134,7 +134,7 @@ runs:
- name: Restore cache
id: cache-restore
uses: actions/cache/restore@v4
if: ${{ inputs.save-if != "true" }}
if: ${{ inputs.save-if != 'true' }}
with:
path: |
${{ inputs.cargo-home }}/bin/
Expand Down

0 comments on commit b46a3eb

Please sign in to comment.