-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
35 lines (35 loc) · 1.28 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
name: Buildalon unity-uwp-builder
description: A GitHub Action to build Unity exported UWP projects.
branding:
icon: package
color: red
inputs:
project-path:
description: The directory that contains the exported visual studio project from Unity.
required: true
configuration:
description: The configuration to use when building the visual studio project. Defaults to `Master`.
required: false
default: 'Master'
architecture:
description: 'The architecture to use when building the visual studio project. Can be: `x86`, `x64`, `ARM`, or `ARM64`.'
required: false
default: 'ARM64'
additional-args:
description: Additional arguments to pass to the msbuild command.
required: false
package-type:
description: 'The type of package to generate. Can be: `sideload` or `upload`. Defaults to `sideload`.'
required: false
default: 'sideload'
certificate-path:
description: 'The path to the certificate to use when packaging the UWP project. Required when `package-type` is `sideload`. Defaults to the Unity generated test certificate.'
required: false
outputs:
executable:
description: The path to the generated executable.
output-directory:
description: The path to the output-directory.
runs:
using: 'node20'
main: 'dist/index.js'