diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e74944e..685ed2d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: install-build: outputs: foo-service: 'false' - bar-service: 'true' + bar-service: 'skip' runs-on: ubuntu-latest steps: - name: install @@ -30,7 +30,7 @@ jobs: bar-service: needs: [install-build] runs-on: ubuntu-latest - if: "${{ needs.install-build.outputs.bar-service }}" + if: "${{ needs.install-build.outputs.bar-service == 'run' }}" steps: - name: Build run: |