actions/cache/restore/action.yaml

21 lines
555 B
YAML
Raw Normal View History

2023-08-06 22:23:39 -04:00
name: Restore Cache
desciption: Restore cached files
inputs:
key:
required: true
type: string
default: default
runs:
using: composite
container:
image: alpine
volumes:
2023-08-06 23:00:51 -04:00
- /mnt/swarm/gitea/runner/cache:/cache
2023-08-06 22:23:39 -04:00
steps:
- run: |
2023-08-07 09:23:39 -04:00
[ ! -f "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" ] && echo "Cache not found" && exit
2023-08-07 09:34:42 -04:00
tar --overwrite -xzf "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz"
2023-08-07 09:15:21 -04:00
echo "Cache restored: /cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz"