CI: fix runtime testing for non master branch
authorPaul Spooren <mail@aparcar.org>
Thu, 13 Jan 2022 23:55:36 +0000 (00:55 +0100)
committerPaul Spooren <mail@aparcar.org>
Fri, 14 Jan 2022 13:45:19 +0000 (14:45 +0100)
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 <mail@aparcar.org>
.github/workflows/multi-arch-test-build.yml

index ed6c22b7e7d6f3f1252e00bc09aed8440e896d5d..5481007912986c18e9320454736024af305fc4a4 100644 (file)
@@ -160,7 +160,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 }}