From 25680e64d8ace8744d23e865dafcf42a47469d01 Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Sat, 26 Aug 2023 13:43:33 +0100 Subject: [PATCH] remove all the quotes --- .github/workflows/docker-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 9cde11e..14f679e 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -96,10 +96,10 @@ 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}} - name: Build and push release (Main Latest Build)