-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
22 lines (22 loc) · 547 Bytes
/
action.yml
File metadata and controls
22 lines (22 loc) · 547 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'CSharp Project To Unity3d Package'
description: 'Convert a c# project into a unity 3d package'
branding:
icon: activity
color: white
inputs:
inputPath:
description:
'The relative input path to the package to be converted'
required: false
default: './'
outputPath:
description:
'The relative output path where to output the package to'
required: false
default: './OutputUnity3dPackage/'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.inputPath }}
- ${{ inputs.outputPath }}