From bc43cdaeb7e5c064543cf4551b34c65618d96c0b Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Sat, 9 Nov 2024 17:43:20 +0100 Subject: [PATCH] build: update Signed-off-by: AuxXxilium --- .github/workflows/autobuild.yml | 8 ++++++-- .github/workflows/build.yml | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index c9a031f2..60626749 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -5,11 +5,15 @@ # See /LICENSE for more information. # -name: Build Arc Image Beta +name: Build Arc Development on: workflow_dispatch: inputs: + runs: + description: "runs-on (ubuntu-latest / self-hosted)" + default: "ubuntu-latest" + type: string version: description: "version (1.0.0)" required: true @@ -25,7 +29,7 @@ on: jobs: build: - runs-on: self-hosted + runs-on: ${{ inputs.runs }} steps: - name: Checkout uses: actions/checkout@main diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26c9b41e..2e2c868a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,10 @@ name: Build Arc Image on: workflow_dispatch: inputs: + runs: + description: "runs-on (ubuntu-latest / self-hosted)" + default: "ubuntu-latest" + type: string version: description: "version (1.0.0)" required: true @@ -41,7 +45,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ inputs.runs }} steps: - name: Checkout uses: actions/checkout@main