mirror of https://github.com/ppy/SDL3-CS.git
Specify SDL3 commit to build
This commit is contained in:
parent
d07bacbb8b
commit
e5a2b13d38
|
|
@ -1,7 +1,12 @@
|
||||||
name: Build Native
|
name: Build Native
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs: {}
|
inputs:
|
||||||
|
sdl_ref:
|
||||||
|
description: SDL3 commit/branch/tag to build
|
||||||
|
required: true
|
||||||
|
default: main
|
||||||
|
type: string
|
||||||
# schedule:
|
# schedule:
|
||||||
# - cron: '0 0 * * *'
|
# - cron: '0 0 * * *'
|
||||||
env:
|
env:
|
||||||
|
|
@ -29,7 +34,7 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
repository: 'libsdl-org/SDL'
|
repository: 'libsdl-org/SDL'
|
||||||
ref: 'main'
|
ref: ${{ inputs.sdl_ref }}
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -94,7 +99,7 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
repository: 'libsdl-org/SDL'
|
repository: 'libsdl-org/SDL'
|
||||||
ref: 'main'
|
ref: ${{ inputs.sdl_ref }}
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -137,7 +142,7 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
repository: 'libsdl-org/SDL'
|
repository: 'libsdl-org/SDL'
|
||||||
ref: 'main'
|
ref: ${{ inputs.sdl_ref }}
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue