mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 17:05:05 +01:00
test 2
This commit is contained in:
parent
a97d5785a3
commit
e0a7387d74
1 changed files with 10 additions and 2 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
|
@ -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 }}"
|
||||
steps:
|
||||
- name: Build
|
||||
run: |
|
||||
|
|
@ -30,8 +30,16 @@ jobs:
|
|||
bar-service:
|
||||
needs: [install-build]
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ needs.install-build.outputs.bar-service }}
|
||||
if: "${{ needs.install-build.outputs.bar-service }}"
|
||||
steps:
|
||||
- name: Build
|
||||
run: |
|
||||
echo "building ..." ${{ needs.install-build.outputs.bar-service }}
|
||||
|
||||
does-string:
|
||||
runs-on: ubuntu-18.04
|
||||
if: "false"
|
||||
steps:
|
||||
- name: was
|
||||
run: ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue