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: jobs:
install-build: install-build:
outputs: outputs:
foo-service: 'false' foo-service: 'run'
bar-service: 'skip' bar-service: 'skip'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -21,7 +21,7 @@ jobs:
foo-service: foo-service:
needs: [install-build] needs: [install-build]
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: needs.install-build.outputs.foo-service if: ${{ needs.install-build.outputs.foo-service == 'run' }}
steps: steps:
- name: Build - name: Build
run: | run: |
@ -30,7 +30,7 @@ jobs:
bar-service: bar-service:
needs: [install-build] needs: [install-build]
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: "${{ needs.install-build.outputs.bar-service == 'run' }}" if: ${{ needs.install-build.outputs.bar-service == 'run' }}
steps: steps:
- name: Build - name: Build
run: | run: |