mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 17:05:05 +01:00
test output
This commit is contained in:
parent
28bbd0ed4c
commit
6acffbc018
1 changed files with 3 additions and 3 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -9,7 +9,7 @@ on:
|
|||
jobs:
|
||||
install-build:
|
||||
outputs:
|
||||
foo-service: 'true'
|
||||
foo-service: 'false'
|
||||
bar-service: 'true'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
foo-service:
|
||||
needs: [install-build]
|
||||
runs-on: ubuntu-latest
|
||||
if: 'true'
|
||||
if: ${{ needs.install-build.outputs.foo-service }}
|
||||
steps:
|
||||
- name: Build
|
||||
run: |
|
||||
|
|
@ -30,7 +30,7 @@ jobs:
|
|||
bar-service:
|
||||
needs: [install-build]
|
||||
runs-on: ubuntu-latest
|
||||
if: 'false'
|
||||
if: ${{ needs.install-build.outputs.bar-service }}
|
||||
steps:
|
||||
- name: Build
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue