Skip to content

Commit

Permalink
fix(cache-nx): fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Nov 16, 2022
1 parent f174cae commit 3aed8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache-nx/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
uses: actions/cache@v3
with:
path: node_modules/.cache/nx
key: {{ runner.os }}-cache-nx-${{ hashFiles('${{ inputs.lockfile }}') }}-${{ github.sha }}
key: ${{ runner.os }}-cache-nx-${{ hashFiles('${{ inputs.lockfile }}') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-cache-nx-${{ hashFiles('${{ inputs.lockfile }}') }}-
${{ runner.os }}-cache-nx-

0 comments on commit 3aed8f3

Please sign in to comment.