23 lines
536 B
YAML
23 lines
536 B
YAML
on:
|
|
workflow_dispatch: ~
|
|
|
|
name: View cache
|
|
|
|
jobs:
|
|
view-cache:
|
|
runs-on: docker
|
|
container:
|
|
image: ghcr.io/catthehacker/ubuntu:act-24.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: data/wiki-meta-cache.yaml
|
|
key: wiki-meta-cache-v2-${{ github.run_id }}
|
|
restore-keys: |
|
|
wiki-meta-cache-v2
|
|
- name: View cache content
|
|
run: |
|
|
cat data/wiki-meta-cache.yaml
|