From 2604d9a5635e9b962a59028b786f6445cede2e8f Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 5 Mar 2023 17:51:03 +0100 Subject: [PATCH] ci/cd - trying a hack to support dynamic runs-on --- .github/workflows/staging-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/staging-tests.yml b/.github/workflows/staging-tests.yml index 098d6d07a..2a5afcdf5 100644 --- a/.github/workflows/staging-tests.yml +++ b/.github/workflows/staging-tests.yml @@ -21,7 +21,10 @@ on: jobs: tests: - runs-on: ${{ fromJSON(github.event.inputs.RUNS_ON) }} + strategy: + matrix: + runs-on: ${{ fromJSON(inputs.RUNS_ON) }} + runs-on: ${{ matrix.runs-on }} steps: # Prepare - name: Checkout source code