Github Actions: quoting troubles
parent
ec4df7b4b7
commit
ed592a27a8
|
@ -46,7 +46,7 @@ jobs:
|
|||
- name: Build and push amd64 Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -59,7 +59,7 @@ jobs:
|
|||
- name: Build and push amd64 Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
- name: Build and push multiarch Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -87,7 +87,7 @@ jobs:
|
|||
- name: Build and push multiarch Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
|
|
@ -52,7 +52,7 @@ jobs:
|
|||
- name: Build and push amd64 Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -65,7 +65,7 @@ jobs:
|
|||
- name: Build and push amd64 Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -80,7 +80,7 @@ jobs:
|
|||
- name: Build and push multiarch Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
@ -93,7 +93,7 @@ jobs:
|
|||
- name: Build and push multiarch Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
|
Loading…
Reference in New Issue