Skip to content

Commit 99d82e8

Browse files
committed
Add run-start-commands
Signed-off-by: Craig Perkins <[email protected]>
1 parent 97ab274 commit 99d82e8

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/bwc-test-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
3333

3434
steps:
35+
- name: Run start commands
36+
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
3537
# This step uses the checkout Github action: https://github.com/actions/checkout
3638
- name: Checkout Branch
3739
uses: actions/checkout@v4

.github/workflows/multi-node-test-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
ooptions: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
3232

3333
steps:
34+
- name: Run start commands
35+
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
3436
# This step uses the setup-java Github action: https://github.com/actions/setup-java
3537
- name: Set Up JDK ${{ matrix.java }}
3638
uses: actions/setup-java@v1

.github/workflows/test-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
3535

3636
steps:
37+
- name: Run start commands
38+
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
3739
# This step uses the checkout Github action: https://github.com/actions/checkout
3840
- name: Checkout Branch
3941
uses: actions/checkout@v4

0 commit comments

Comments
 (0)