build: update

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-11-09 17:43:20 +01:00
parent 0966a2b783
commit bc43cdaeb7
2 changed files with 11 additions and 3 deletions

View File

@ -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

View File

@ -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