-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (30 loc) · 969 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
name: 'Create Zip Package for Octopus Deploy'
description: 'GitHub Action to create a Zip package for Octopus Deploy'
author: 'Octopus Deploy'
branding:
color: 'blue'
icon: 'package'
inputs:
package_id:
description: 'Package Id.'
required: true
version:
description: 'Package version.'
required: true
output_folder:
description: 'The folder to put the resulting package in, relative to the current working directory; not the base path.'
required: true
base_path:
description: 'The base path for the input files.'
required: true
files:
description: 'Multi-line list of files to include in the package, relative to the basePath. Supports globbing.'
required: true
outputs:
package_file_path:
description: 'The full path to the package file that was created.'
package_filename:
description: 'The filename, without the path, of the file that was created.'
runs:
using: 'node20'
main: 'dist/index.js'