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 22:47:18 -04:00
|
|
|
- /cache:/cache
|
2023-08-06 22:23:39 -04:00
|
|
|
steps:
|
|
|
|
- run: |
|
2023-08-06 22:34:15 -04:00
|
|
|
mv "/cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" . && \
|
|
|
|
tar -xzf "archive.tar.gz" || \
|
|
|
|
echo "Cache not found"
|