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: |