From 56cf18027b6735e07ce0c94ed35fa663a6f36ca5 Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Fri, 14 Jan 2022 00:55:36 +0100 Subject: [PATCH] CI: fix runtime testing for non master branch The runtime testing always ran on master branch aka snapshots since the branch wasn't passed over to the container execution! Signed-off-by: Paul Spooren (cherry picked from commit f535d770901674d7d9f3d8cd9abe566d9db63ebe) --- .github/workflows/multi-arch-test-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index b14d4d42a2..e5e3845e6f 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -93,7 +93,7 @@ jobs: run: | docker build -t test-container --build-arg ARCH .github/workflows/ env: - ARCH: ${{ matrix.arch }} + ARCH: ${{ matrix.arch }}-${{ env.BRANCH }} - name: Test via Docker container if: ${{ matrix.runtime_test }}