We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbd79f commit 64e0ccbCopy full SHA for 64e0ccb
.github/workflows/ci.yml
@@ -22,13 +22,16 @@ jobs:
22
LATEST_TAG=$(curl -s https://api.github.com/repositories/148821256/releases/latest | jq -r '.tag_name')
23
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
24
25
- - name: Restore Luau cache
+ - name: Luau Cache
26
id: cache-luau
27
uses: actions/cache@v3
28
with:
29
path: luau-binaries
30
key: luau-${{ env.LATEST_TAG }}
31
32
+ - name: Debug cache hit
33
+ run: echo "Cache hit? ${{ steps.cache-luau.outputs.cache-hit }}"
34
+
35
- name: Setup Luau (If Cached)
36
if: steps.cache-luau.outputs.cache-hit == 'true'
37
run: |
0 commit comments