From 5a16b63f8682b216423173e97380286d0f6ddee3 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Tue, 23 Jan 2024 13:57:00 +0100 Subject: [PATCH] ci: ensure "tools-build succeeded" always runs --- .github/workflows/tools-buildtest.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tools-buildtest.yml b/.github/workflows/tools-buildtest.yml index d16a3481a2..c3163b4090 100644 --- a/.github/workflows/tools-buildtest.yml +++ b/.github/workflows/tools-buildtest.yml @@ -60,9 +60,11 @@ jobs: with: cmd: make -C ${{ matrix.tools.path }}/${{ matrix.tools.name }} tools-build-success: - # this is only run if all jobs in tools-build succeeded + if: always() needs: tools-build runs-on: ubuntu-latest steps: - name: tools-build succeeded - run: exit 0 + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}