actions/cache/restore/action.yaml

19 lines
584 B
YAML
Raw Normal View History

2023-12-19 23:34:54 -05:00
name: Restore Cache
desciption: Restore cached files
inputs:
key:
type: string
required: false
description: Key to store cache under
default: ${{github.run_id}}
runs:
using: composite
steps:
- name: Create cache
run: |
2024-05-13 10:55:55 -04:00
[ ! -f "/tmp/gitea/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" ] && echo "Cache not found" && exit
tar --overwrite -xzf "/tmp/gitea/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" && echo "Cache restored: /cache/$GITHUB_REPOSITORY/${{ inputs.key }}/archive.tar.gz" || echo "Failed..."
shell: sh