Extract path from Docker Image (#1)

This commit is contained in:
Samuel Ryan 2020-08-29 16:20:01 +01:00 committed by GitHub
parent f6106497d3
commit bf80417647
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 3800 additions and 0 deletions

19
action.yml Normal file
View file

@ -0,0 +1,19 @@
name: 'Docker Extract'
description: 'Extract file(s) from a Docker Image'
author: 'Samuel Ryan <sam@samryan.co.uk>'
inputs:
image:
description: 'Docker Image to extract files from'
required: true
path:
description: 'Path (from root) to a file or directory within Image'
required: true
outputs:
destination:
description: 'Destination of extracted file(s)'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'scissors'
color: 'blue'