From 3eab584cf57bb0989c5a164d1fc4e8303d5509d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Thu, 21 Mar 2024 18:39:17 +0100 Subject: [PATCH] Update build.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álex Ruiz --- .github/workflows/build.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a266eaff69e77..59ea407bb63e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,13 +60,15 @@ jobs: build: needs: [matrix] + runs-on: ubuntu-latest strategy: fail-fast: false matrix: ${{ fromJson(needs.setup.outputs.matrix) }} - uses: ./.github/workflows/r_build.yml - with: - revision: ${{ github.event_name == 'push' && '0' || inputs.revision }} - upload: ${{ inputs.upload }} - is_release: ${{ inputs.is_release }} - distribution: ${{ matrix.distribution }} - architecture: ${{ matrix.architecture }} + steps: + - uses: ./.github/workflows/r_build.yml + with: + revision: ${{ github.event_name == 'push' && '0' || inputs.revision }} + upload: ${{ inputs.upload }} + is_release: ${{ inputs.is_release }} + distribution: ${{ matrix.distribution }} + architecture: ${{ matrix.architecture }}