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 18:05:20 +0000 (19:05 +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 f254a8dcc11e017b77fc27c8520397b34f00994c..fb7265b5807c757b251e6e2d0f5384ae48e2b5a6 100644 (file)
@@ -116,7 +116,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 }}