mirror of
https://forgejo.merr.is/annika/actions-docker-extract.git
synced 2025-12-11 14:39:57 -05:00
✨ Extract path from Docker Image (#1)
This commit is contained in:
parent
f6106497d3
commit
bf80417647
11 changed files with 3800 additions and 0 deletions
19
action.yml
Normal file
19
action.yml
Normal 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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue