From bf5e6acf4604fb2f4241a3cb97aff219bfcd1b3a Mon Sep 17 00:00:00 2001 From: Nils Heydecker <48135649+Nilstrieb@users.noreply.github.com> Date: Fri, 12 Aug 2022 14:49:14 +0200 Subject: [PATCH] second test --- .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 685ed2d..6676a8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ on: jobs: install-build: outputs: - foo-service: 'false' + foo-service: 'run' bar-service: 'skip' runs-on: ubuntu-latest steps: @@ -21,7 +21,7 @@ jobs: foo-service: needs: [install-build] runs-on: ubuntu-latest - if: needs.install-build.outputs.foo-service + if: ${{ needs.install-build.outputs.foo-service == 'run' }} steps: - name: Build run: | @@ -30,7 +30,7 @@ jobs: bar-service: needs: [install-build] runs-on: ubuntu-latest - if: "${{ needs.install-build.outputs.bar-service == 'run' }}" + if: ${{ needs.install-build.outputs.bar-service == 'run' }} steps: - name: Build run: |