Skip to content

Commit

Permalink
add platform input
Browse files Browse the repository at this point in the history
  • Loading branch information
myin142 committed Oct 18, 2024
1 parent ec19f38 commit e71eafc
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/godot-template-build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
name: Build Godot Templates

on:
workflow_call:
workflow_dispatch:
inputs:
version:
description: 'Godot Version'
required: true
type: string
default: '4.3'
workflow_dispatch:
inputs:
version:
description: 'Godot Version'
platform:
description: 'Platform to build'
required: true
type: string
default: '4.3'
default: 'linux'

concurrency:
group: ${{ github.workflow }}
Expand All @@ -25,7 +23,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [linux]
platform:
- ${{ inputs.platform }}
steps:
- uses: kuma-gee/action-godot-template@master
with:
Expand Down

0 comments on commit e71eafc

Please sign in to comment.