Skip to content

Commit f8686bc

Browse files
authored
Fix TMT plan regex
1 parent 6700b14 commit f8686bc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/container-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,32 +40,32 @@ jobs:
4040
if [ "${{ matrix.os }}" == "fedora" ]; then
4141
compose="Fedora-latest"
4242
context="Fedora"
43-
tmt_plan="fedora"
43+
tmt_plan="fedora$"
4444
else
4545
if [ "${{ matrix.os }}" == "c9s" ]; then
4646
compose="CentOS-Stream-9"
4747
context="CentOS Stream 9"
48-
tmt_plan="c9s"
48+
tmt_plan="c9s$"
4949
else
5050
compose="CentOS-Stream-10"
5151
context="CentOS Stream 10"
52-
tmt_plan="c10s"
52+
tmt_plan="c10s$"
5353
fi
5454
fi
5555
else
5656
if [ "${{ matrix.os }}" == "rhel8" ]; then
5757
compose="RHEL-8.10.0-Nightly"
5858
context="RHEL8"
59-
tmt_plan="rhel8-docker"
59+
tmt_plan="rhel8-docker$"
6060
else
6161
if [ "${{ matrix.os }}" == "rhel9" ]; then
6262
compose="RHEL-9.4.0-Nightly"
6363
context="RHEL9"
64-
tmt_plan="rhel9-docker"
64+
tmt_plan="rhel9-docker$"
6565
else
6666
compose="RHEL-10-Nightly"
6767
context="RHEL10"
68-
tmt_plan="rhel10-docker"
68+
tmt_plan="rhel10-docker$"
6969
fi
7070
fi
7171
fi

0 commit comments

Comments
 (0)