We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9caa11c commit bd17cddCopy full SHA for bd17cdd
.github/workflows/ci.yml
@@ -78,9 +78,10 @@ jobs:
78
uses: actions/cache@v3
79
with:
80
path: .next/cache
81
- key: ${{ runner.os }}-nextjs-${{ github.ref }}
+ key: ${{ runner.os }}-nextjs-${{ github.ref_name }}-${{ hashFiles('yarn.lock') }}
82
restore-keys: |
83
- ${{ runner.os }}-nextjs
+ ${{ runner.os }}-nextjs-${{ github.ref_name }}-
84
+ ${{ runner.os }}-nextjs-
85
86
- name: Build Webapp
87
run: yarn build
@@ -89,7 +90,7 @@ jobs:
89
90
91
92
93
94
95
# Merge Blocker: Ensure Both Builds Pass
96
merge_guard:
0 commit comments