-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
45 lines (41 loc) · 1.42 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
42
43
44
45
name: 'Verify Pulumi Provider Release'
description: 'Verifies that a published provider is usable'
author: 'Pulumi'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'check-circle'
color: 'purple'
# Define your inputs here.
inputs:
runtime:
description:
The runtime to test against. One of `nodejs`, `python`, `dotnet` or `go`.
required: true
directory:
description: Path to a Pulumi program to use for the test.
required: true
provider:
description: The name of the provider (excluding the publisher prefix)
required: true
providerVersion:
description: The version of the provider to be tested.
required: true
packageVersion:
description:
The version of the package to be tested. Defaults to `providerVersion` if
not set. This must be set for Go because its versions are always a
different format to the provider's.
publisher:
description: The publisher of the provider (if not pulumi)
default: pulumi
goModuleTemplate:
description: |
Template to generate the go module to be used.
Available template fields: `{publisher}`, `{provider}`, `{moduleVersionSuffix}`
{moduleVersionSuffix} is calculated from the provider version e.g. "/v2"
default: github.com/{publisher}/pulumi-{provider}/sdk{moduleVersionSuffix}
# Define your outputs here.
outputs: {}
runs:
using: node20
main: dist/index.js