Skip to content

Commit 885cfd1

Browse files
ctruedenclaude
andcommitted
CI: cache pombast timestamps in status workflow
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e333d84 commit 885cfd1

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/status.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ jobs:
2121
with:
2222
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2323

24+
- name: Restore pombast cache
25+
uses: actions/cache/restore@v4
26+
with:
27+
path: ~/.cache/pombast/pom-timestamps
28+
restore-keys: ${{ runner.os }}-pombast-status-
29+
2430
- name: Generate and publish status page
2531
run: .github/status.sh
2632
shell: bash
33+
34+
- name: Save pombast cache
35+
if: always()
36+
uses: actions/cache/save@v4
37+
with:
38+
path: ~/.cache/pombast/pom-timestamps
39+
key: ${{ runner.os }}-pombast-status-${{ github.run_id }}

0 commit comments

Comments
 (0)