actions/tar/extract/action.yaml

17 lines
303 B
YAML
Raw Normal View History

2023-11-23 21:54:14 -05:00
name: Extract Archive
desciption: Extract files from gziped archive
inputs:
file:
requried: false
type: string
default: archive.tar.gz
runs:
using: composite
steps:
- uses: docker://alpine
with:
entrypoint: tar
2023-11-23 21:55:31 -05:00
args: -xzf "${{inputs.file}}"