diff --git a/.github/workflows/artifact-os-build.yml b/.github/workflows/artifact-os-build.yml index 64cc4149..abf1e762 100644 --- a/.github/workflows/artifact-os-build.yml +++ b/.github/workflows/artifact-os-build.yml @@ -1,10 +1,12 @@ on: - workflow_call: + workflow_dispatch: inputs: runner: - description: 'One of: [ubuntu-latest, windows-latest]' required: true - type: string + type: choice + options: + - ubuntu-latest + - windows-latest jobs: build_artifact: diff --git a/.github/workflows/build-linux-artifact.yml b/.github/workflows/build-linux-artifact.yml deleted file mode 100644 index 01be0647..00000000 --- a/.github/workflows/build-linux-artifact.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: Build Static Linux - -on: - [workflow_call, workflow_dispatch] - -jobs: - build_artifact: - uses: ./.github/workflows/artifact-os-build.yml - with: - runner: 'ubuntu-latest' diff --git a/.github/workflows/build-win32-artifact.yml b/.github/workflows/build-win32-artifact.yml deleted file mode 100644 index b95f65e4..00000000 --- a/.github/workflows/build-win32-artifact.yml +++ /dev/null @@ -1,10 +0,0 @@ -name: Build win32 artifact - -on: - [pull_request, workflow_call, workflow_dispatch] - -jobs: - build_artifact: - uses: ./.github/workflows/artifact-os-build.yml - with: - runner: 'windows-latest'