Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
montudor committed Jul 18, 2019
0 parents commit d3ed86d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"

RUN apk add zip
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]"
args = "zip -r output.zip ./path_to_files"
}
```

0 comments on commit d3ed86d

Please sign in to comment.