actions/cache/restore/action.yaml

22 lines
515 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:12:47 -04:00
mv "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" . && \
tar -xzf "archive.tar.gz" && \
echo "Cache restored: /cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" || \
echo "Cache not found"
2023-08-06 23:04:07 -04:00