Files
test3/.gitea/workflows/l4-cache.yaml
T
ztm c862fd8699
l4-cache / cache (push) Successful in 6s
更新 .gitea/workflows/l4-cache.yaml
2026-07-09 06:55:32 +00:00

14 lines
385 B
YAML

name: l4-cache
on: [push]
jobs:
cache:
runs-on: wehub-deploy
steps:
- name: 写入待缓存内容
run: mkdir -p /tmp/testcache && date > /tmp/testcache/stamp
- uses: actions/cache@v4
with:
path: /tmp/testcache
key: cache-test-fixed-key
- name: 查看缓存内容
run: cat /tmp/testcache/stamp || echo "cache miss"