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