-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
41 lines (38 loc) · 1.22 KB
/
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
name: 'Create NuGet Package for Octopus Deploy'
description: 'GitHub Action to create a NuGet 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. Supports globbing.'
required: true
nuspec_description:
description: 'Description to include in the Nuspec file. '
required: true
nuspec_authors:
description: 'Multi-line list of authors to include in the Nuspec file.'
required: true
nuspec_release_notes:
description: 'Release notes to include in the Nuspec file.'
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'