-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
45 lines (41 loc) · 1020 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'Action Archiver'
description: GitHub Action to generate archives
author: sibiraj-s
branding:
icon: archive
color: blue
runs:
using: node16
main: dist/index.js
inputs:
working-directory:
description: Current working directory for the action
required: false
default: ''
format:
description: The archive format to use. Either zip or tar
required: true
default: tar
path:
description: A File or directory or glob pattern to archive
required: true
default: '*'
output:
description: Name of the output file
required: true
default: '__archive__'
gzip:
description: Compress the tar archive using gzip
required: false
default: false
compression-level:
description: Compression level for the archive
required: false
default: 4
ignore:
description: Paths to ignore. Can be used when path is a directory or glob
required: false
default: ''
outputs:
archive:
description: Absolute path of the archive created