Skip to content

Commit d71a07a

Browse files
committed
Update action name and fix absolute path to relative
1 parent 502b6c0 commit d71a07a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ LABEL repository="https://github.com/PereViader/CSharpProjectToUnity3dPackage"
1111
LABEL homepage="https://github.com/PereViader/CSharpProjectToUnity3dPackage"
1212

1313
# Label as GitHub action
14-
LABEL com.github.actions.name="CSharpProjectToUnity3dPackage"
14+
LABEL com.github.actions.name="CSharp Project To Unity3d Package"
1515
# Limit to 160 characters
16-
LABEL com.github.actions.description="Convert a c# project into a unity package"
16+
LABEL com.github.actions.description="Convert a c# project into a unity 3d package"
1717
# See branding:
1818
# https://docs.github.com/actions/creating-actions/metadata-syntax-for-github-actions#branding
1919
LABEL com.github.actions.icon="activity"

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: 'CSharpProjectToUnity3dPackage'
2-
description: 'Convert a c# project into a unity package'
1+
name: 'CSharp Project To Unity3d Package'
2+
description: 'Convert a c# project into a unity 3d package'
33
branding:
44
icon: activity
55
color: white
@@ -8,12 +8,12 @@ inputs:
88
description:
99
'The relative input path to the package to be converted'
1010
required: false
11-
default: '/'
11+
default: './'
1212
outputPath:
1313
description:
1414
'The relative output path where to output the package to'
1515
required: false
16-
default: '/OutputUnity3dPackage'
16+
default: './OutputUnity3dPackage/'
1717
runs:
1818
using: 'docker'
1919
image: 'Dockerfile'

0 commit comments

Comments
 (0)