-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
56 lines (53 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
name: PEW Create build name
description: GitHub action to generate a standardized PEW build artifact name
inputs:
project-name:
description: Name of the project
required: false
type: string
repository-path:
description: Path to the repository
required: false
type: string
branch-name:
description: Branch name of the repository
required: false
type: string
build-configuration:
description: Configuration for the build
type: string
date:
description: |
Date to use for the build (will use git log if not set)
Use a UTC timestamp in the format '2011-04-14T16:00:49ZZ' (Note the double ZZ)
required: false
type: string
ref:
description: SHA hash to use for the commit (will use git log if not set)
required: false
type: string
format:
description: Format to use for the build artifact
default: '{project}-{datetime}-{hash}-{shortname}+{platform}+{configuration}+{branch}.zip'
type: string
required: false
outputs:
short:
description: "Short name of the build artifact"
template:
description: "Template name without {platform} and {configuration} replacements"
nx:
description: "Name of the Switch build artifact"
pc:
description: "Name of the PC build artifact"
ps4:
description: "Name of the PS4 build artifact"
ps5:
description: "Name of the PS5 build artifact"
xb1:
description: "Name of the Xbox One build artifact"
xbs:
description: "Name of the Xbox Series build artifact"
runs:
using: node20
main: dist/index.js