-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from josephbmanley/refactor/build
Refactor/build
- Loading branch information
Showing
3 changed files
with
58 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters