Skip to content

Commit b7c38d8

Browse files
Add missing id tag
1 parent 0be9ae3 commit b7c38d8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test-authnz.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
docker build -t mocha-test --target test .
7373
7474
- name: Run Suites
75-
id: run-suites
75+
id: tests
7676
run: |
7777
IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}')
7878
CONF_DIR_PREFIX="$(mktemp -d)" RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG \
@@ -83,7 +83,7 @@ jobs:
8383
if: always()
8484
uses: actions/[email protected]
8585
env:
86-
SELENIUM_ARTIFACTS: ${{ steps.run-suites.outputs.SELENIUM_ARTIFACTS }}
86+
SELENIUM_ARTIFACTS: ${{ steps.tests.outputs.SELENIUM_ARTIFACTS }}
8787
with:
8888
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
8989
path: |

.github/workflows/test-management-ui-for-pr.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
docker build -t mocha-test --target test .
5858
5959
- name: Run short UI suites on a standalone rabbitmq server
60+
id: tests
6061
run: |
6162
IMAGE_TAG=$(find PACKAGES/rabbitmq-server-generic-unix-*.tar.xz | awk -F 'PACKAGES/rabbitmq-server-generic-unix-|.tar.xz' '{print $2}')
6263
CONF_DIR_PREFIX="$(mktemp -d)" RABBITMQ_DOCKER_IMAGE=pivotalrabbitmq/rabbitmq:$IMAGE_TAG \
@@ -67,7 +68,7 @@ jobs:
6768
if: ${{ failure() && steps.tests.outcome == 'failed' }}
6869
uses: actions/upload-artifact@v4
6970
env:
70-
SELENIUM_ARTIFACTS: ${{ steps.run-suites.outputs.SELENIUM_ARTIFACTS }}
71+
SELENIUM_ARTIFACTS: ${{ steps.tests.outputs.SELENIUM_ARTIFACTS }}
7172
with:
7273
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
7374
path: |

.github/workflows/test-management-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
if: ${{ failure() && steps.tests.outcome == 'failed' }}
7676
uses: actions/[email protected]
7777
env:
78-
SELENIUM_ARTIFACTS: ${{ steps.run-suites.outputs.SELENIUM_ARTIFACTS }}
78+
SELENIUM_ARTIFACTS: ${{ steps.tests.outputs.SELENIUM_ARTIFACTS }}
7979
with:
8080
name: test-artifacts-${{ matrix.browser }}-${{ matrix.erlang_version }}
8181
path: |

0 commit comments

Comments
 (0)