mirror of
https://github.com/RetroDECK/components-template.git
synced 2025-01-19 10:35:37 +00:00
Added option to run on a chosen runner such as retrodeck
This commit is contained in:
parent
32604942c0
commit
7af698ae3b
6
.github/workflows/build_artifacts.yml
vendored
6
.github/workflows/build_artifacts.yml
vendored
|
@ -16,6 +16,10 @@ on:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "false"
|
default: "false"
|
||||||
|
RUNS_ON:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: "ubuntu-latest"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DATE: ${{ github.run_id }}
|
DATE: ${{ github.run_id }}
|
||||||
|
@ -23,7 +27,7 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
Building-project:
|
Building-project:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ${{ inputs.RUNS_ON }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue