Skip to content

Commit

Permalink
fix ref determination
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeal-eth committed Aug 15, 2023
1 parent 92cd02c commit e529c12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
- name: Cache Hardhat artifacts
uses: actions/cache@v3
with:
key: hardhat-${{ matrix.workspace }}-${{ env.GITHUB_REF }}-${{ steps.date.outputs.date }}
key: hardhat-${{ matrix.workspace }}-${{ github.head_ref }}-${{ steps.date.outputs.date }}
restore-keys: |
hardhat-${{ matrix.workspace }}-${{ env.GITHUB_REF }}
hardhat-${{ matrix.workspace }}-${{ github.head_ref }}
hardhat-${{ matrix.workspace }}
path: |
markets/**/cache
Expand All @@ -60,9 +60,9 @@ jobs:
- name: Cache Cannon packages
uses: actions/cache@v3
with:
key: cannon-${{ matrix.workspace }}-${{ env.GITHUB_REF }}-${{ steps.date.outputs.date }}
key: cannon-${{ matrix.workspace }}-${{ github.head_ref }}-${{ steps.date.outputs.date }}
restore-keys: |
cannon-${{ matrix.workspace }}-${{ env.GITHUB_REF }}
cannon-${{ matrix.workspace }}-${{ github.head_ref }}
cannon-${{ matrix.workspace }}
path: |
~/.local/share/cannon
Expand Down

0 comments on commit e529c12

Please sign in to comment.