From 6acffbc018cf625c240fae41c846a5254cb14b55 Mon Sep 17 00:00:00 2001 From: Nils Heydecker <48135649+Nilstrieb@users.noreply.github.com> Date: Fri, 12 Aug 2022 14:41:25 +0200 Subject: [PATCH] test output --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f0bf98..fea857b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ on: jobs: install-build: outputs: - foo-service: 'true' + foo-service: 'false' bar-service: 'true' runs-on: ubuntu-latest steps: @@ -21,7 +21,7 @@ jobs: foo-service: needs: [install-build] runs-on: ubuntu-latest - if: 'true' + if: ${{ needs.install-build.outputs.foo-service }} steps: - name: Build run: | @@ -30,7 +30,7 @@ jobs: bar-service: needs: [install-build] runs-on: ubuntu-latest - if: 'false' + if: ${{ needs.install-build.outputs.bar-service }} steps: - name: Build run: |