mirror of
https://github.com/yeslayla/build-godot-action.git
synced 2025-07-04 03:25:03 +02:00
Refactor building to target platform
Refactor artifact output == -> =
This commit is contained in:
18
action.yml
18
action.yml
@ -1,9 +1,27 @@
|
||||
name: "Build Godot"
|
||||
description: "Build a Godot project for multiple platforms"
|
||||
author: josephbmanley
|
||||
inputs:
|
||||
name:
|
||||
description: 'Name of the exported binary'
|
||||
required: true
|
||||
preset:
|
||||
description: 'Name of the preset in `export_presets.cfg` to use'
|
||||
required: true
|
||||
subdirectory:
|
||||
description: 'Optional name of the subdirectory to put exported project in'
|
||||
required: false
|
||||
package:
|
||||
description: 'Set true to output an artifact zip file'
|
||||
required: false
|
||||
runs:
|
||||
using: docker
|
||||
image: Dockerfile
|
||||
args:
|
||||
- ${{ inputs.name }}
|
||||
- ${{ inputs.preset }}
|
||||
- ${{ inputs.subdirectory }}
|
||||
- ${{ inputs.package }}
|
||||
branding:
|
||||
icon: loader
|
||||
color: blue
|
Reference in New Issue
Block a user