mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 10:05:40 +00:00
Make it possible to control revision at workflow dispatch
This commit is contained in:
parent
d271140842
commit
8079474552
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -1,7 +1,11 @@
|
||||||
name: build-native
|
name: build-native
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs: {}
|
inputs:
|
||||||
|
rev:
|
||||||
|
description: 'libsdl-org/SDL commit to build'
|
||||||
|
required: false
|
||||||
|
default: 'master'
|
||||||
# schedule:
|
# schedule:
|
||||||
# - cron: '0 0 * * *'
|
# - cron: '0 0 * * *'
|
||||||
env:
|
env:
|
||||||
|
@ -69,6 +73,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: libsdl-org/SDL
|
repository: libsdl-org/SDL
|
||||||
|
ref: ${{ github.event.inputs.rev }}
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: 'SDL2-CS'
|
path: 'SDL2-CS'
|
||||||
|
|
Loading…
Reference in a new issue