We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6542db9 commit 1507344Copy full SHA for 1507344
1 file changed
.github/workflows/make.yml
@@ -36,6 +36,16 @@ jobs:
36
sudo bash -c 'apt-get update; apt-get install -y lazarus' >/dev/null
37
instantfpc -Fu/usr/lib/lazarus/*/components/lazutils .github/workflows/make.pas
38
39
+ - name: Cache Lazarus
40
+ uses: actions/cache@v4
41
+ with:
42
+ path: |
43
+ ~/.lazarus
44
+ ~/.cache/lazarus
45
+ key: lazarus-${{ runner.os }}-${{ hashFiles('**/*.lpi', '**/*.pas') }}
46
+ restore-keys: |
47
+ lazarus-${{ runner.os }}-
48
+
49
- name: Build DEB package
50
shell: bash
51
run: |
0 commit comments