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:
|
jobs:
|
||||||
install-build:
|
install-build:
|
||||||
outputs:
|
outputs:
|
||||||
foo-service: 'true'
|
foo-service: 'false'
|
||||||
bar-service: 'true'
|
bar-service: 'true'
|
||||||
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: 'true'
|
if: ${{ needs.install-build.outputs.foo-service }}
|
||||||
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: 'false'
|
if: ${{ needs.install-build.outputs.bar-service }}
|
||||||
steps:
|
steps:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue