mirror of
https://github.com/montudor/action-zip.git
synced 2024-11-24 00:50:56 -05:00
Update action information
This commit is contained in:
parent
dff12f2cc2
commit
9a14b79362
2 changed files with 15 additions and 9 deletions
|
@ -1,12 +1,3 @@
|
||||||
FROM alpine:3.10.1
|
FROM alpine:3.10.1
|
||||||
|
|
||||||
LABEL "com.github.actions.name"="Create Zip File"
|
|
||||||
LABEL "com.github.actions.description"="Create a zip file containing specific files from your repository"
|
|
||||||
LABEL "com.github.actions.icon"="folder-plus"
|
|
||||||
LABEL "com.github.actions.color"="gray-dark"
|
|
||||||
|
|
||||||
LABEL "repository"="https://github.com/montudor/action-zip"
|
|
||||||
LABEL "homepage"="https://github.com/montudor/action-zip"
|
|
||||||
LABEL "maintainer"="Monte Hellawell <monte@montudor.com>"
|
|
||||||
|
|
||||||
RUN apk add zip
|
RUN apk add zip
|
||||||
|
|
15
action.yml
Normal file
15
action.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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'
|
Loading…
Reference in a new issue