second test

This commit is contained in:
nora 2022-08-12 14:49:14 +02:00
parent cbf42d5aa6
commit bf5e6acf46

View file

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