Update action information

This commit is contained in:
Monte Hellawell 2020-06-20 19:13:38 +01:00
parent dff12f2cc2
commit 9a14b79362
2 changed files with 15 additions and 9 deletions

View file

@ -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
View 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'