Skip to content

Commit 64e0ccb

Browse files
init.test.luau cached luau installation in ci
1 parent 4bbd79f commit 64e0ccb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@ jobs:
2222
LATEST_TAG=$(curl -s https://api.github.com/repositories/148821256/releases/latest | jq -r '.tag_name')
2323
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
2424
25-
- name: Restore Luau cache
25+
- name: Luau Cache
2626
id: cache-luau
2727
uses: actions/cache@v3
2828
with:
2929
path: luau-binaries
3030
key: luau-${{ env.LATEST_TAG }}
3131

32+
- name: Debug cache hit
33+
run: echo "Cache hit? ${{ steps.cache-luau.outputs.cache-hit }}"
34+
3235
- name: Setup Luau (If Cached)
3336
if: steps.cache-luau.outputs.cache-hit == 'true'
3437
run: |

0 commit comments

Comments
 (0)