mirror of
https://github.com/montudor/action-zip.git
synced 2024-11-24 00:50:56 -05:00
16 lines
357 B
YAML
16 lines
357 B
YAML
|
name: Create Zip File
|
||
|
author: Monte Hellawell
|
||
|
description: Create a zip file containing specific files from your repository
|
||
|
inputs:
|
||
|
args:
|
||
|
description: zip or unzip, followed by the relevant options
|
||
|
required: true
|
||
|
runs:
|
||
|
using: 'docker'
|
||
|
image: 'Dockerfile'
|
||
|
args:
|
||
|
- ${{ inputs.args }}
|
||
|
branding:
|
||
|
icon: 'folder-plus'
|
||
|
color: 'gray-dark'
|