From 7bb93b6f4e37d0ca6e8d97a3a8c267a87be73d28 Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Sat, 26 Aug 2023 17:01:35 +0100 Subject: [PATCH] fix docker build for tags --- .github/workflows/docker-image.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index c6bbafd..57d3347 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -114,10 +114,11 @@ jobs: context: ${{github.workspace}} platforms: ${{matrix.config.platforms}} build-args: | - EXTRA_DEPS="${{matrix.config.extra_deps}}" - CMAKE_ARGS="${{matrix.config.cmake_args}}" - BUILD_BASE="${{matrix.config.build_base}}" - RUNTIME_BASE="${{matrix.config.runtime_base}}" + EXTRA_DEPS=${{matrix.config.extra_deps}} + CMAKE_ARGS=${{matrix.config.cmake_args}} + BUILD_BASE=${{matrix.config.build_base}} + RUNTIME_BASE=${{matrix.config.runtime_base}} + RUNTIME_DEPS=${{matrix.config.runtime_deps}} - name: Build and push release (Accelerated Builds) @@ -130,7 +131,8 @@ jobs: context: ${{github.workspace}} platforms: ${{matrix.config.platforms}} build-args: | - EXTRA_DEPS="${{matrix.config.extra_deps}}" - CMAKE_ARGS="${{matrix.config.cmake_args}}" - BUILD_BASE="${{matrix.config.build_base}}" - RUNTIME_BASE="${{matrix.config.runtime_base}}" + EXTRA_DEPS=${{matrix.config.extra_deps}} + CMAKE_ARGS=${{matrix.config.cmake_args}} + BUILD_BASE=${{matrix.config.build_base}} + RUNTIME_BASE=${{matrix.config.runtime_base}} + RUNTIME_DEPS=${{matrix.config.runtime_deps}}