Initial commit

This commit is contained in:
Monte Hellawell 2019-07-18 12:03:22 +01:00
commit d3ed86d778
2 changed files with 26 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM alpine:3.10.1
LABEL "com.github.actions.name"="ZIP"
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

14
README.md Normal file
View file

@ -0,0 +1,14 @@
# Zip Files Action
This GitHub action exposes the zip command for use in building/archiving.
## Usage
An example action config is displayed below:
```
action "Zip" {
uses = "montudor/action-zip@v0.1.0"
args = "zip -r output.zip ./path_to_files"
}
```