From 7a1539ec710ac96287edb999b50f2ba8c6220f75 Mon Sep 17 00:00:00 2001 From: pederhan Date: Mon, 16 Sep 2024 16:17:26 +0200 Subject: [PATCH] Actually use container in workflow --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb21fd03..6e4ce15a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,6 @@ jobs: build_pyinstaller: name: Build pyinstaller binary - runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] @@ -45,6 +44,9 @@ jobs: include: - os: ubuntu-latest container: centos:8 + runs-on: ${{ matrix.os }} + container: ${{ matrix.container }} + steps: - uses: actions/checkout@v4