Browse Source

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 <mail@aparcar.org>
lilik-openwrt-22.03
Paul Spooren 2 years ago
parent
commit
f535d77090
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .github/workflows/multi-arch-test-build.yml

+ 1
- 1
.github/workflows/multi-arch-test-build.yml View 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 }}


Loading…
Cancel
Save